CS 201: Topics for exam 1

This is intended to give you a sense of what I think is important from the course so far, and what I will be thinking of when creating the exam.

I hate disclaimers, but here are some anyway. This is not a contract. I may have inadvertently left something off this list that ends up in an exam question. I make no guarantees that the exam will be 100% limited to items listed below. Moreover, I will not be able to test all of this material given the time limitations of the exam. I will have to pick and choose some subset of it.

You are permitted one 8.5 x 11 sheet of paper with notes (both sides) for use as a reference during the exam.

Here are the specifics: Students should be able to...

ADTs: Be able to describe, use, and determine appropriate uses for stacks, queues, sets and maps.

Implementation approaches: Be able to explain what binary search trees and hash tables are used for. Be able to illustrate how standard operations (insert, delete, etc.) work. Be able to quantify performance (big-O) of standard operations. Show understanding of the ideas behind operations and big-O performance by being able to answer questions about novel variations on standard techniques.

Specifics regarding particular implementation approaches:

Java implementations:

Recursion: Be able to code a recursive method in Java subject to specifications. Be able to explain quantitatively (with big-O notation) tradeoffs in recursive vs. iterative solutions to a particular problem.