university of washington logo

  • News & Events
  • Current Students
  • Prospective Students
  • Faculty Candidates
  • Industry Affiliates
  • Support CSE

CSE 373 Data Structures and Algorithms, Summer 2015

This page contains topic lists for the exams and links to exams from previous quarters. Previous offerings of the course may have covered somewhat different topics, and the order may not have been quite the same. In previous quarters, there have been two midterms. Only pay attention to questions that cover material on the topics we have discussed in lecture.

In addition to old exams, you will want to review homework exercises, try additional problems from the textbook, and review lecture material.

All exams will be closed book and closed notes, and you will not be allowed to use calculators or other electronic devices.

Topics Covered

The midterm covers all the course material up through priority queues and heaps (all lectures up to and including July 10th). Topics include stacks, queues, induction, asymptotic analysis, dictionaries, binary trees, binary search trees, AVL trees, priority queues, and heaps.

Sample Midterms

  • Midterm 1 From Fall 2013:   unsolved   solved
  • Midterm 1 From Fall 2012:   unsolved   solved
  • Midterm 1 From Winter 2012:   unsolved   solved
  • Midterm 1 From Fall 2011:   unsolved   solved
  • Midterm 1 From Fall 2010:   unsolved   solved
  • Midterm 1 From Spring 2010:   unsolved   solved

The final exam is cumulative but more weight will be given to topics covered since the midterm. Note that our final will be 60 minutes long, while previous midterms were 50 minutes and previous finals were 2 hours, so the length will be different than previous exams. So, review all topics covered in lecture or homework assignments except a few topics clearly marked as optional (notably AVL deletion and the details of the proof for the lower bound for comparison sorting).

For advanced topics like dynamic programming, backtracking, p vs. np, np-completeness, you DO need to know the BASIC ideas about how they work. I will not ask you to write any code or do any proofs on these topics, but you SHOULD understand the main idea behind how they work.

Sample Exams

Our exam will consist of various types of short-answer questions. You may be asked to write or read Java code or pseudocode. It will be similar in style to the midterm.

Because our final exam is cumulative and the summer quarter is shorter, it makes sense to provide questions from old midterm exams. Note that we did not study B trees , leftist heaps , or skew heaps .

  • Midterm 2 From Fall 2013:   unsolved   solved
  • Midterm 2 From Fall 2012:   unsolved   solved
  • Midterm 2 From Winter 2012:   unsolved   solved
  • Midterm 2 From Fall 2011:   unsolved   solved
  • Midterm 2 From Fall 2010:   unsolved   solved
  • Midterm 2 From Spring 2010:   unsolved   solved
  • From Fall 2013:   unsolved   solved

Some additional questions   unsolved   solved

  • Calendar: Slides, Readings
  • Assignments
  • Grading Guidelines
  • Academic Integrity
  • Discussion Board
  • Assignment Dropbox
  • Mail List
  • Installing Java from CSE 142
  • Eclipse Tutorial
  • Programming Lab Info
  • Java Links from CSE 143

Computer Science & Engineering University of Washington Box 352350 Seattle, WA 98195-2350 (206) 543-1695 voice, (206) 543-2969 FAX

UW Privacy Policy and UW Site Use Agreement

dsa mid term paper

Data structure and algorithm past paper

Data structure and algorithm all previous/ past question papers.

-Data structure and algorithm – Computer Science all subject past paper  Data structure and algorithm- Data structure and algorithm Project idea -Data structure and algorithm MCQ -Data structure and algorithm Interview Question  – Computer Science all courses -Technology – University Past Paper -Programming language – Question paper – old paper

Data structure and algorithm Final in 2021

Data structure and algorithm question paper

Mid term Exam Data structure and algorithm paper in 2021

Data structure and algorithm

Write a program to convert an infix expression that includes (,), +,-,*and / to postfix and apply it on the following expressions.

  • p+q*r+(s*t)

What do you know about stack? Describe the purpose of each of the following stack operations

  • Push (), Pop (), Peek (), Isfull () and Isempty ()
  • Convert a*(b*c) + (d*e) into its postfix form using stack operations

Let’s suppose if a queue is filled at a Rear end and there is an empty space at Front end then how can one insert new element into the queue? What do you know about queuing theory? How priority queue is better than double ended queue?

How link list is better than array? Compare the pros and cons of array and link list.

Data structure and algorithm Sessional I in 2020

Data structure and algorithm final in  2020, data structure and algorithm sessional ii in 2019.

Q1: Write a program to convert an infix expression that includes (.)- *and la positia on the following expressions.

P+q*r+(s*t)

Q2: What do you know about stack? Describe the purpose of each of the following stack operations (I) Push () (II) Pop () (III) Peek () (iv) Isfull ( ) (v) Isempty () (in Convert a* (b*e) + (d*e) into its postfix form using stack operations.

Q3: Lets suppose if a queue is tilled at Rear end and there is an empty space at Front end then how can one insert new element into the queue? What do you know about queuing theory? How priority queue ? better than double ended queue?

Q3: How Tint list is better than Array? Compare the pros and cons of array and link list.

#Data structure and algorithm # Computer Science all subject past paper   #Data structure and algorithm- #Data structure and algorithm Project idea #Data structure and algorithm MCQ #Data structure and algorithm Interview Question  # Computer Science all courses #Technology # University Past Paper #Programming language # Question paper # old paper

dsa mid term paper

Important Pages

© Copyright Cuitutorial All Rights Reserved

R13 - I Mid - Term Examinations, September - 2014 

R13 - ii mid - term examinations, november - 2014 .

  • Data Science
  • Trending Now
  • Data Structures
  • System Design
  • Foundational Courses
  • Practice Problem
  • Machine Learning
  • Data Science Using Python
  • Web Development
  • Web Browser
  • Design Patterns
  • Software Development
  • Product Management
  • Programming

Top 50 Data Structures MCQs with Answers

Which of the following sorting algorithms can be used to sort a random linked list with minimum time complexity?

Insertion Sort

In the worst case, the number of comparisons needed to search a singly linked list of length n for a given element is (GATE CS 2002)

log(2*n) -1

Let P be a singly linked list. Let Q be the pointer to an intermediate node x in the list. What is the worst-case time complexity of the best known algorithm to delete the node Q from the list?

What is the worst case time complexity of inserting n elements into an empty linked list, if the linked list needs to be maintained in sorted order ?

Consider the following conditions:

 (a)The solution must be feasible, i.e. it must satisfy all the supply and demand constraints. 

(b)The number of positive allocations must be equal to m1n21, where m is the number of rows and n is the number of columns. 

(c)All the positive allocations must be in independent positions. 

The initial solution of a transportation problem is said to be non-degenerate basic feasible solution if it satisfies: Codes:

(a) and (b) only

(a) and (c) only

(b) and (c) only

(a), (b) and (c)

  • In push operation, if new nodes are inserted at the beginning of linked list, then in pop operation, nodes must be removed from end.
  • In push operation, if new nodes are inserted at the end, then in pop operation, nodes must be removed from the beginning.
  • Both of the above
  • None of the above
  • Managing function calls
  • The stock span problem
  • Arithmetic expression evaluation
  • All of the above

Question 10

There are 50 questions to complete.

Get the Reddit app

Welcome to the **[National University of Singapore](http://www.nus.edu.sg/)** subreddit! Put the word out for any redditors you know out there. Posts should be related to NUS. Exchange students/visitors are more than welcome! Any suggestions or feedback for information to go onto the sidebar are welcome as well! --- **Good to Know** * **[NUS Calendar of Events](https://myaces.nus.edu.sg/CoE/)** * [NUS EZLink Concession Information](http://

DSA1101 Midterm Exam

Good day to all, does anyone know if there are past year papers for DSA1101 midterm exams? I went to the past year paper depository and there are only final exam papers :( Really appreciate if someone could share some past year papers for practice!

By continuing, you agree to our User Agreement and acknowledge that you understand the Privacy Policy .

Enter the 6-digit code from your authenticator app

You’ve set up two-factor authentication for this account.

Enter a 6-digit backup code

Create your username and password.

Reddit is anonymous, so your username is what you’ll go by here. Choose wisely—because once you get a name, you can’t change it.

Reset your password

Enter your email address or username and we’ll send you a link to reset your password

Check your inbox

An email with a link to reset your password was sent to the email address associated with your account

Choose a Reddit account to continue

dsa mid term paper

Provide details on what you need help with along with a budget and time limit. Questions are posted anonymously and can be made 100% private.

dsa mid term paper

Studypool matches you to the best tutor to help you with your question. Our tutors are highly qualified and vetted.

dsa mid term paper

Your matched tutor provides personalized help according to your question details. Payment is made only after you have completed your 1-on-1 session and are satisfied with your session.

dsa mid term paper

  • Homework Q&A
  • Become a Tutor

dsa mid term paper

All Subjects

Mathematics

Programming

Health & Medical

Engineering

Computer Science

Foreign Languages

dsa mid term paper

Access over 35 million academic & study documents

Dsa mid term question paper.

Sign up to view the full document!

dsa mid term paper

24/7 Study Help

Stuck on a study question? Our verified tutors can answer all questions, from basic  math  to advanced rocket science !

dsa mid term paper

Similar Documents

dsa mid term paper

working on a study question?

Studypool BBB Business Review

Studypool is powered by Microtutoring TM

Copyright © 2024. Studypool Inc.

Studypool is not sponsored or endorsed by any college or university.

Ongoing Conversations

dsa mid term paper

Access over 35 million study documents through the notebank

dsa mid term paper

Get on-demand Q&A study help from verified tutors

dsa mid term paper

Read 1000s of rich book guides covering popular titles

dsa mid term paper

Sign up with Google

dsa mid term paper

Sign up with Facebook

Already have an account? Login

Login with Google

Login with Facebook

Don't have an account? Sign Up

IMAGES

  1. 2017 DSA Paper

    dsa mid term paper

  2. DSA mid past papers

    dsa mid term paper

  3. [DSE 2013 English Paper 3] Task 8

    dsa mid term paper

  4. DSA LAB Mid Paper 1 .pdf

    dsa mid term paper

  5. DSA with Java TU Paper || BIM Study Notes

    dsa mid term paper

  6. Class 10 Science Mid Term Sample Paper 2023

    dsa mid term paper

COMMENTS

  1. CSE 373 15su

    CSE 373 Data Structures and Algorithms, Summer 2015. This page contains topic lists for the exams and links to exams from previous quarters. Previous offerings of the course may have covered somewhat different topics, and the order may not have been quite the same. In previous quarters, there have been two midterms.

  2. DSA mid past papers

    DSA mid past papers. Mid exam. Course. Data Structures (CS 202) 67 Documents. Students shared 67 documents in this course. University National University of Computer and Emerging Sciences. Info More info. Academic year: 2020/2021. Listed book Data Structures Using C++. Uploaded by: Anonymous Student.

  3. DSA: MIDTERM EXAM Flashcards

    python method to test whether stack is empty. palindrome. a string that reads the same in either direction. Ex. level, radar, civic. infix notation. a normal expression is in what notation? postfix notation. what expression is where the operands (variable or number) precede the operators (symbol). Study with Quizlet and memorize flashcards ...

  4. Data structure and algorithm past paper

    Data structure and algorithm question paper. Mid term Exam Data structure and algorithm paper in 2021. Data structure and algorithm. Q.NO.1. Write a program to convert an infix expression that includes (,), +,-,*and / to postfix and apply it on the following expressions. ... DSA S2. Data structure and algorithm Final in 2020. DSA Final.

  5. CS_610_Midterm_2_Exam_Solution

    Solution for Midterm 2 exam for DSA course by Prof. Marzieh Eskandari for Fall Semester 2022. programming test, cs610 name: time: 100 minutes give the best

  6. School of System and Technology: Department of Computer Science

    DSA Midterm 2020 - Free download as Word Doc (.doc), PDF File (.pdf), Text File (.txt) or read online for free. This document is a midterm exam for a Data Structures and Algorithms course taken in the fall 2020 semester. It contains 4 questions worth a total of 15 marks. Question 1 asks students to write an algorithm to visit the nodes of a double linked list in reverse order.

  7. Bahria University, Islamabad Campus: Department of Computer ...

    MidTerm-DSA-Spring-2021-10052021-124956pm - Free download as PDF File (.pdf), Text File (.txt) or read online for free. The document is the midterm exam paper for Data Structures and Algorithms class. It contains 3 questions. Question 1 asks to define functions for operations on linked lists representing student enrollment data. Question 2 contains parts on suitable data structures, converting ...

  8. 1st Mid DSA Paper

    1st Mid DSA Paper - Free download as PDF File (.pdf), Text File (.txt) or read online for free. This document contains instructions for a midterm exam on data structures and algorithms. It includes 4 questions assessing students' knowledge of linked lists, recursion, algorithm analysis, and stacks. Students are instructed to show their work, justify their answers, and note the relevant CLOs ...

  9. DSA Midterm Exam Reviewer Flashcards

    Study with Quizlet and memorize flashcards containing terms like Pseudocode, Integer Constant, Real Constant and more.

  10. Midterm paper DSA for 100 marks

    Midterm paper DSA for 100 marks. ITCS6114 Midterm Review (Chapter 1- 8, 10, 12) 1. Time complexity analysis Learning objectives & assessment examples: • Given an algorithm, no matter whether the algorithm is recursive or not, we are able to define its growth rate function.

  11. Solutions DSA mock exam

    Data Structures & Algorithms MidTerm Class Test Solutions. Class Test 2020/ Data Structures & Algorithms MidTerm Class Test Note. Answer ALL questions. Each question will be marked out of 20. The paper will be marked out of 61, which will be rescaled to a mark out of 100. Question 1

  12. JNTU Hyderabad B.Tech Data Structures Mid Exam Question Papers

    Question & Answers. Free Worksheets. Lower Kindergarten (LKG) Worksheets. Upper Kindergarten (UKG) Worksheets. Grade 1 Worksheets. Grade 2 Worksheets. JNTU Hyderabad B.Tech Data Structures Mid Exam Question Papers.

  13. DSA Lab Mid Term

    DSA-Lab-mid-term - Free download as PDF File (.pdf), Text File (.txt) or read online for free. This document is a summary of a 60-minute mid-term test for a DSA (Data Structures and Algorithms) lab. It contains 20 multiple choice questions covering topics like functions, recursion, linked lists, and their related concepts. Students are asked to answer each question fully and predict outputs of ...

  14. Top 50 Data Structures MCQs with Answers

    Top 50 Data Structures MCQs with Answers Quiz will help you to test and validate your DSA Quiz knowledge. It covers a variety of questions, from basic to advanced. The quiz contains 50 questions. You just have to assess all the given options and click on the correct answer.

  15. Mid Sem DSA Paper

    End Sem DSA Paper Mid Sem DSA Paper Mid Sem DSA Paper Table of contents Question 1 Question 2 Question 3 Question 4 Question 5 Question 6 Question 7 Week 11 Week 12 (cont.) Week 1 Week 2 Week 4 Week 4 (cont.) Week 5 Week 5 (cont.) Week 6

  16. 2023 DSA Midsem Question Paper

    2023 DSA Midsem Question Paper. Mid semester Exam (Regular) Question paper. Course. Data Structures And Algorithms (BC1004) 149 Documents. Students shared 149 documents in this course. ... Sub Name Code: DSA Subject Code: CS-Program Name: B Semester: III Year - 2 023 Resultant List:- 3→2→4→1 (List for number 1423 i 2001-578=1423) Q3. [2+3]

  17. DSA1101 Midterm Exam : r/nus

    DSA1101 Midterm Exam. Good day to all, does anyone know if there are past year papers for DSA1101 midterm exams? I went to the past year paper depository and there are only final exam papers : ( Really appreciate if someone could share some past year papers for practice!

  18. Mid Term DSA

    Mid-Term-DSA - Free download as Word Doc (.doc / .docx), PDF File (.pdf), Text File (.txt) or read online for free. This document contains a 3 question midterm exam for a Data Structures and Algorithms course. The questions assess knowledge of algorithm analysis concepts, performing calculations with summations and floor functions, dry running bubble sort and radix sort on sample inputs, and ...

  19. Data Structures and Algorithms Midsemester Paper

    Test2 dsa 2021 paper; Quiz 1 dsa paper 2021; CS F211 A4 - This contains important DSA questions topic-wise (Arrays) CS F211 A7 - This contains important DSA questions topic-wise (Heaps and trees) CS F211 A6 - This contains important DSA questions topic-wise (stacks and queues)

  20. SOLUTION: Dsa mid term question paper

    a. Using the insertion sort algorithm, manually sort the following list and show your work in each pass using a table:

  21. DSA456 Midterm radu

    DSA week1-5concepts - Midterm materials. Linked List Table - Midterm materials. Cheat Sheet - Midterm materials. DSA chet sheet for midterm 1; Preview text. ... Answer all questions in the space provided on the test paper This test includes a cover page, plus 9 pages of questions. SENECA'S ACADEMIC HONESTY POLICY