Algorithms

CSc 22000–Spring 2024

The City College of CUNY
Department of Computer Science

Instructor: Prof. Nelly Fazio
Lectures: T/Th, 11:00am–12:15pm, NAC 6/213
Office hours: T/Th, 12:30–1:30pm (and by appointment), SH-279
Email: nfazio AT ccny DOT cuny DOT edu [Put CSc220 in Subject line]


[ Course Description | List of Topics | Textbook | Work Load & Grading | CUNY Academic Integrity Policy | Assignments | Weekly Schedule ]


Course Description

From the course catalog: Measuring algorithmic complexity (O-Notation); searching and sorting algorithms and their complexity; tree and graph algorithms and their complexity; classes of algorithms, such as divide-and-conquer, backtracking, greedy, probabilistic, etc. Computational complexity; the classes P and NP.

Prerequisites: CSc 212, and (CSc 217 or EE 311).

Major Topics Covered in the Course

Growth of functions. Divide-and-Conquer algorithms. Master theorem. Sorting algorithms. Advanced data structures (e.g., red-black trees, B-trees, splay trees). Dynamic programming. Greedy algorithms. Graph algorithms (e.g., BFS/DFS, shortest paths, MST, max-flow). NP-completeness. Additional topics: Amortized analysis, Fibonacci heaps, number-theoretic algorithms, and basic approximation algorithms.

Textbook

Required:

Work Load & Grading

NOTE: There will be NO make-up or substitute exams

CUNY Academic Integrity Policy

Cheating will not be tolerated. If you cheat, you risk losing your position as a student in the department and the college. CUNY policy on academic integrity can be found here. Failure to understand and follow these rules will constitute cheating, and will be dealt with as per university guidelines.

Assignments

Posted on blackboard.

Weekly Schedule (tentative)

Lecture Date Topic Readings
1 Jan 25 Overview. Growth of functions. Asymptotic notation. InsertionSort. CLRS 1, 2.1, 2.2, 3
Review CLRS 10, 11
2 Jan 30 Divide-and-Conquer. Examples. MergeSort. CLRS 2.3. Appendix A
3 Feb 1 Solving recurrence: Recursion-tree method. Examples. CLRS 4.4
4 Feb 6 More on Divide-and-Conquer: Maximum Subarray. CLRS 4.1
5 Feb 8 Solving recurrences: Substitution method. Examples. CLRS 4.3
6 Feb 13 Solving recurrences: Master method. Examples. CLRS 4.5
7 Feb 15 Sorting Algorithms: Heapsort. CLRS 6
8 Feb 20 Sorting Algorithms: Quicksort. CLRS 7
  Feb 22 No class! Monday schedule.  
9 Feb 27 More on sorting: Lower bound and beyond. CLRS 8
10 Feb 29 More on sorting: Lower bound and beyond. CLRS 8
11 Mar 5 Balanced Search Trees: Red-Black Trees (I). Review CLRS 12
CLRS 13
12 Mar 7 Balanced Search Trees: Red-Black Trees (II). CLRS 13
13 Mar 12 Balanced Search Trees: B-Trees (I). CLRS 18
14 Mar 14 Balanced Search Trees: B-Trees (II). CLRS 18
15 Mar 19 Review  
16 Mar 21 Midterm Exam.  
17 Mar 26 Dynamic Programming (I). Example: Rod Cutting. CLRS 15
18 Mar 28 Dynamic Programming (II). Example: Longest Common Subsequence. CLRS 15
19 Apr 2 Greedy Algorithms. CLRS 16
20 Apr 4 More on Greedy Algorithms. Huffman Codes. CLRS 16
21 Apr 9 Graphs. BFS and DFS. CLRS 22
22 Apr 11 Topological Sort. CLRS 22
23 Apr 16 Stronlgy Connected Components. CLRS 22
24 Apr 18 Minimum Spanning Trees. CLRS 23
  Apr 23 No class! Spring Recess.  
  Apr 25 No class! Spring Recess.  
  Apr 30 No class! Spring Recess.  
25 May 2 Single-Source Shortest Paths: Bellman-Ford algorithm. CLRS 24
26 May 7 Single-Source Shortest Paths for DAGs + Dijkstra. CLRS 24
27 May 9 All-Pairs Shortest Paths: Floyd-Warshall. CLRS 25
28 May 14 Review
 
May 16 Final Exam, 11:00am—12:15pm, NAC 6/213

Copyright © Nelly Fazio