Transcript title
Data Structures
Credits
4
Grading mode
Standard letter grades
Total contact hours
50
Lecture hours
30
Other hours
20
Prerequisites
CS 162.
Recommended preparation
MTH 231.
Course Description
Covers general-purpose data structures and algorithms, software engineering of these structures, and the application of these engineering concepts to real world problems. Topics covered include managing complexity, complexity analysis, stacks, queues, lists, trees, heaps, hash tables, sets, maps, and graphs.
Course learning outcomes
1. Describe the properties, interfaces, and behaviors of basic abstract data types, such as collection, stack, and queue.
2. Read an algorithm or program code segment that contains iterative constructs and analyze the asymptotic time complexity of the algorithm or code segment.
3. State the asymptotic time complexity of the fundamental operations associated with a variety of data structures, such as vector, linked list, tree, and heap.
4. Recall the space utilization of common data structures in terms of the long-term storage needed to maintain the structure, as well as the short-term memory requirements of fundamental operations, such as sorting.
5. Design and implement general-purpose, reusable data structures that implement one or more abstractions.
6. Compare and contrast the operation of common data structures (such as linear structures, priority queues, tree structures, hash tables, maps, and graphs) in terms of time complexity, space utilization, and the abstract data types they implement.
Content outline
- Abstract Data Types
- Dynamic Arrays
- Linked Lists
- Big O
- Trees
- Heaps
- Maps
- Hash Tables
Required materials
Textbook is required.