We will have two in-person exams, joint with both lectures.

More details including sample exams and topics will be shared later.

Final Exam: Thursday, March 20, 2025

12:30-2:20 pm (110 minutes)

Location: KNE 120

25wi Final Exam, Solution


Final exam policies

1. Closed book, closed notes.

2. No calculators, cell phones, or other electronic devices allowed.

3. Writing after time has been called will result in a loss of points on your exam.

4. You will be provided this reference sheet during the exam.

The final is cumulative, which means we can ask you about any topic from the whole class. That said, we will put significantly more focus on the second-half of the course. I will not ask you to actually *do* an AVL insertion, but having a reasonable idea of how these work would be a good idea. This is roughly: Hashing, Sorting, Graphs, Parallelism, Concurrency. This quarter P/NP is covered on EX12 and thus will NOT be a topic for our final exam. You should ignore questions on P/NP found on previous as exams.


Topics Include at least: (NOT NECESSARILY AN EXHAUSTIVE LIST)

Topics not tested on


Misc

Previous finals

We provide some exams from previous quarters of 332 to help with your studying. Be aware that the topics covered may vary from what will be covered on our exam - refer to the list above if you are wondering about a particular topic. Our hope is that these exams will be useful in your studying, but you should NOT take them as a guarantee of exactly what your exam will be like this quarter. They are provided only to help you in your studying. We recommend taking these exams on your own in a timed environment to get practice both with the material and with managing your time. Most students find this approach better preparation than just looking at the solutions.


Midterm Exam: Monday, February 10, 2025

5:30-6:30pm (60 minutes)

Location: BAG 154 (Last Name A-H) & BAG 131 (Last Name I-Z)

  • Bring a photo ID with you to the exam.

  • You must take the exam in the room you are assigned to.

  • Assignment is by your Last Name: BAG 154 (Last Name A-H) & BAG 131 (Last Name I-Z)


Midterm exam policies

1. Closed book, closed notes.

2. No calculators, cell phones, or other electronic devices allowed.

3. Writing after time has been called will result in a loss of points on your exam.

4. You will be provided this reference sheet during the exam.

All material from the course from lecture 1 up to and including AVL trees is fair game.

Hashing and sorting will NOT be on the midterm. Check the lecture calendar for links to all slides and ink used in class, as well as readings for each topic.


Topics Include at least: (NOT NECESSARILY AN EXHAUSTIVE LIST)

  • Stacks and Queues - array and linked list implementations. Runtimes.
  • Big Oh (and Omega & Theta):
    • Know the definition
    • Be able to evaluate whether f(x) is O(g(x)), Big Omega, Big Theta
    • Be able to find constants c & n0 to demonstrate Big Oh, Big Omega, Big Theta
    • Examining code to determine its Big O running time.
    • Best case, worst case, average case, amortized case
    • Space complexity
    • Space/Time tradeoffs
  • Recurrence Relations:
    • Examine recursive code and give a recurrence relation
    • Given a recurrence relation, solve to closed form
    • This will be somewhat different than the posted older exams, instead it will be similar to what you did for Exercise 3.
  • Priority Queue ADT & Binary Heaps:
    • Structure & ordering properties
    • Related: Perfect and Complete Trees.
    • Insertion, findMin, deleteMin, increaseKey, decreaseKey, remove, buildHeap
    • Run-times for all the above; including intuition for expected O(1) for insert & O(n) for buildHeap
    • Array representation
    • D-heaps - how different/related to Binary Heaps
  • Dictionary ADT: insert, find, delete
  • Binary Search Trees:
    • Binary property, BST ordering property
    • Inorder, Preorder, Postorder traversals
    • Find, insert & delete
    • Run-times for all the above
  • AVL Trees:
    • BST with stored height & balance property
    • Height bound resulting from balance property (you do not need to memorize the proof, but being familiar with how you construct the worst case AVL tree may be helpful)
    • Insertions; different rotation cases, no delete
    • Run-time for find & insert

Topics you will NOT be tested on:

  • IntelliJ
  • Generics
  • Java syntax

Misc

1. Note that you may be required to write pseudocode, but it will be evaluated as an algorithm, not as valid Java (or whatever) code.

2. Writing a simple proof of some sort is a possibility. Any such proof will be intended to show that you know how to prove things. You will not be expected to have a "magic insight" in order to complete the proof.

3. The homeworks and section problems thus far are a decent indication of the types of questions that could be asked.


Previous midterms

We provide some exams from previous quarters of 332 to help with your studying. Be aware that the topics covered may vary from what will be covered on our exam - refer to the list above if you are wondering about a particular topic. In partiuclar, we have not covered B-trees this quarter. Our hope is that these exams will be useful in your studying, but you should *NOT* take them as a guarantee of exactly what your exam will be like this quarter. They are provided only to help you in your studying. We recommend *taking* these exams on your own in a timed environment to get practice both with the material and with managing your time. Most students find this approach better preparation than just looking at the solutions.

  • CSE 332 25wi Sample Midterm, Solution <-- To be discussed during review session on Fri 2/7/2025
  • CSE 332 23sp Midterm, Solution
  • CSE 332 23wi Midterm, Solution
  • CSE 332 22su Midterm, Solution
  • CSE 332 19au Midterm, Solution
  • CSE 332 19wi Midterm, Solution
  • CSE 332 18au Midterm, Solution
  • CSE 332 18wi Midterm, Solution
  • CSE 332 17au Midterm, Solution
  • CSE 332 16au Midterm, Solution
  • CSE 332 15wi Midterm, Solution
  • CSE 332 14 sp Midterm, Solution
  • CSE 332 13au Midterm, Solution
  • CSE 332 13sp Midterm, Solution
  • CSE 332 13wi Midterm, Solution
  • CSE 332 12sp Midterm, Solution
  • CSE 332 12wi Midterm, Solution
  • CSE 332 11wi Midterm, Solution
  • CSE 332 10su midterm Solution
  • CSE 332 10sp midterm Solution
  • Good luck with your exam studying!