CPSC 327 | Data Structures and Algorithms | Spring 2025 |
Exam 2 will be in class. Take care of any necessary business before class so that you do not need to leave the room during the exam.
The exam will focus on ADTs and data structures, though it will also include analysis of algorithms (you will be asked to meet certain running times or give the running time of your implementation). Graphs and graph algorithms will not be on this exam. Specific topics include:
Homeworks 2-4 cover material that may be on the exam. While it is unlikely that there will be questions asking you to simply carry out operations on particular data structures, it is likely that there will be questions that require you to understand how to carry out those operations. You will not be asked to write specific Java code. There are also likely to be design-a-data-structure questions. #2-3 on homework 2, #8 on homework 3, and all of homework 4 are good examples of the kinds of questions to expect.
As with exam 1, you should be able to determine running time from code or a description of an algorithms and should know the major classes of growth rates and their order from slowest-growing to fastest-growing so that you can determine if a specific running time has been achieved. Should they be necessary, the sums and recurrence relation tables and the log/exponent rules sheet will be provided.