CS 201: Data Structures (Winter 2018)

[ 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. 01/03 W Introduction; Java basics (Appendix B)
2. 01/05 FFrom Python to Java Java classes (Appendix C), javadoc (Appendix A) hw00Getting started
Week 2: ADT and interface; lists
3. 01/08 MDefining Classes Java tutorial

- lab1: Python to Java

hw01Java basics
4. 01/10 WD.0–9 Inheritance (Appendix D, Java Interlude 7)
Unit 1: Abstract Data Types
5. 01/12 FP.0–18 Interfaces (Prelude), Lists (Chapter 12), generics (Java Interlude 1) hw02Lunar lander
Week 3: stacks and queues
6. 01/15 MJI-1; JI-2 Exceptions (Java Interlude 2)
7. 01/17 W12.1–2,9–10,14; 13.1–4 List implementation with an array (Chapter 13) hw03Zoo displayer
8. 01/19 F5.0–5; 10.0–4
fairy tale
Stacks and Queues (Chapters 5 and 10)
Week 4: graphs, maps, and sets; intro to complexity analysis
9. 01/22 M28.0–11
fairy tale
Graphs (Chapter 28)
10. 01/24 W19.0–4; JI-5.0–7 Maps (Chapter 19), Sets, Iterators (Java Interlude 5) hw04Maze solver
Unit 2: Efficiency and Algorithms
11. 01/26 F4.0–10; 8.8,14
fairy tale
Efficiency and Sorting (Chapters 4 and 8)
Week 5: sorting and links
12. 01/29 M(none) Exam 1
13. 01/31 W7.0–7; 9.10–14,23
fairy tale
Recursive Sorting (Chapters 7 and 9)

- (This fairy tale is especially good!)

- optional math: lower bound analysis for comparison-based sorting

- optional math: average analysis for quick sort

hw05Path finder
Unit 3: Implementation
14. 02/02 F3.1–8; 14.0–6 Links, nested classes, linked list (Chapters 3 and 14)

- optional math: amortized analysis for adding to the end of an ArrayList

Week 6: recursion
15. 02/07 W7.8–18,45–47
fairy tale
Recursion (Chapter 7)

- VisuAlgo step-by-step visualizations of sorting

- toptal side-by-side comparisons of sorting

- Algorithmic complexity attacks and libc qsort()

hw06Complexity
16. 02/09 F6.1–12 Stacks (Chapter 6)

- lab2: Implement a Generic Linked Stack

Week 7: trees
17. 02/12 M11.1–8 Queues (Chapter 11) hw07Zoo displayer reprise
18. 02/14 W23.1–11,22–24 Trees (Chapters 23 and 24)

- lab3: Construct Expression Trees

19. 02/16 F23.29–32; 25.2–4,7–8
fairy tale
Binary search trees (Chapter 25)

- optional math: average analysis for quick sort via BSTs

hw08Queue recursor
Week 8: heaps
20. 02/19 M25.19–28,40–43 Map and Set based on trees
21. 02/21 W10.19; 23.33–35; 26.2–3,5–7,9–10
fairy tale
Priority Queues; Heaps (Chapter 26) hw09Code interpreter
22. 02/23 F(none) Exam 2
Week 9: hashing
23. 02/26 M26.13–18; 27.0,13–14 Heap sort; Balanced search trees (Chapter 27)

- optional math: bulk adding to a heap

24. 02/28 W21.0–12 (don't worry too much about 21.9)Balanced search trees; Hashing (Chapter 21) hw10Heap builder
25. 03/02 F21.13–24 Map and Set based on hashing (Chapter 22)
Week 10: graphs
26. 03/05 M22.1–8 Hash code functions

- lab4: Compare Hash Code Functions

hw11Cloud dreamer
27. 03/07 W29.0–10 Graphs (Chapter 29)

- lab5: Graph Implementations

28. 03/09 F(none) Graphs; course wrap up hw12Hashing
Final Exam: 03/14 Wednesday 12:00–14:30