CS 201: Data Structures (Spring 2017)

[ Current Week ]

Basic Information

Course Information

Think back to your favorite assignment from Introduction to Computer Science. Did you ever get the feeling that "there has to be a better/smarter way to do this problem"? The Data Structures course is all about how to store information intelligently and access it efficiently. How can Google take your query, compare it to billions of web pages, and return the answer in less than one second? How can one store information so as to balance the competing needs for fast data retrieval and fast data modification? To help us answer questions like these, we will analyze and implement stacks, queues, trees, linked lists, graphs, and hash tables.

Resources

Calendar

Daily/weekly schedule to be updated throughout the term; topics, readings, and exam dates are tentative and subject to change.

Instructions regarding reading.

DateRead before classTopics and textbook referenceDue 10pm after class
Unit 0: Introduction
Week 1: getting started with Java
1. 03/27 M Introduction; Java basics (Appendix B)
2. 03/29 WFrom Python to Java Java classes (Appendix C), javadoc (Appendix A) hw00Getting started
3. 03/31 FDefining Classes Java tutorial

- lab1: Python to Java

hw01Java basics
Week 2: lists; more Java
4. 04/03 MD.0–9 Inheritance (Appendix D, Java Interlude 7)
Unit 1: Abstract Data Types
5. 04/05 WP.0–18 Interfaces (Prelude), Lists (Chapter 12), generics (Java Interlude 1) hw02Lunar lander
6. 04/07 FJI-1; JI-2 Exceptions (Java Interlude 2)
Week 3: stacks, queues, graphs
7. 04/10 M12.1–2,9–10,14; 13.1–4 List implementation with an array (Chapter 13) hw03Zoo displayer
8. 04/12 W5.0–5; 10.0–4
optional fairy tale
Stacks and Queues (Chapters 5 and 10)
9. 04/14 F28.0–11
optional fairy tale
Graphs (Chapter 28)
Week 4: maps and sets; intro to complexity analysis; midterm exam 1
10. 04/17 M19.0–4; JI-5.0–7 Maps (Chapter 19), Sets, Iterators (Java Interlude 5) hw04Maze solver
Unit 2: Efficiency and Algorithms
11. 04/19 W4.0–10; 8.8,14
optional fairy tale
Efficiency and Sorting (Chapters 4 and 8)
12. 04/21 F(none) Exam 1
Week 5: recursion and sorting
13. 04/24 M7.0–7; 9.10–14,23
optional fairy tale
Recursive Sorting (Chapters 7 and 9)

- (This optional fairy tale is especially good!)

- Algorithmic complexity attacks and libc qsort()

hw05Path finder
14. 04/26 W7.8–18,45–47
optional fairy tale
Recursion (Chapter 7)
Unit 3: Implementation
15. 04/28 F3.1–8; 14.0–6 Links, nested classes, linked list (Chapters 3 and 14) hw06Complexity
Week 6: stacks and queues
16. 05/03 W6.1–12 Stacks (Chapter 6)

- lab2: Implement a Generic Linked Stack

17. 05/05 F11.1–8 Queues (Chapter 11) hw07Zoo displayer reprise
Week 7: trees
18. 05/08 M23.1–11,22–24 Trees (Chapters 23 and 24)

- lab3: Construct Expression Trees

19. 05/10 W23.29–32; 25.2–4,7–8
optional fairy tale
Binary search trees (Chapter 25) hw08Queue recursor
20. 05/12 F25.19–28,40–43 Map and Set based on trees
Week 8: priority queues; midterm exam 2
21. 05/15 M10.19; 23.33–35; 26.2–3,5–7,9–10
optional fairy tale
Priority Queues; Heaps (Chapter 26) hw09Code interpreter
22. 05/17 W26.13–18; 27.0,13–14 Heap sort; Balanced search trees (Chapter 27)
23. 05/19 F(none) Exam 2
Week 9: hashing
24. 05/22 M21.0–12 (don't worry too much about 21.9)Balanced search trees; Hashing (Chapter 21) hw10Heap builder
25. 05/24 W21.13–24 Map and Set based on hashing (Chapter 22)
26. 05/26 F22.1–8 Hash code functions

- lab4: Compare Hash Code Functions

hw11Cloud dreamer
Week 10: graphs
27. 05/29 M29.0–10 Graphs (Chapter 29)

- lab5: Graph Implementations

28. 05/31 W(none) Graphs; course wrap up hw12Hashing
Final Exam: 06/03 Saturday 08:30–11:00