Algorithms and Data Structures
Course outline
This a graduate course on algorithms and data structures. Topics that I plan to cover include: basic programming paradigms (recursion, divide and conquer, greedy, dynamic programming), data structures (union-find, heaps), graph algorithms (shortest paths, spanning trees, network flows, matching, min-cut), randomized algorithms, linear programming and duality, semi-definite programming, approximation algorithms, online algorithms.
Prerequisites
We will assume knowledge of the basics of algorithms and analysis and data structures, including basic sorting and searching algorithms, graph traversal, solving recurrences, big-oh notation, and NP-completeness. These prerequisites may be obtained from the CLRS reference book.
Details
Classes will be held Tue 4-5:30 pm and Fri 2 - 3:30 in A-201.

Classes begin on August 17th.

Evaluation will be on the basis of assigments (50%), a mid-term (20%), and a final exam (30%). The weightage of these may be slightly modified later.

Reference material
The topics we cover will mostly be from the book Introduction to Algorithms by Cormen, Leiserson, Rivest, and Stein, for the first part of the course. However, our treatment and notation will differ. Other good reference materials are

  • Algorithm Design by Kleinberg and Tardos
  • Algorithms by Dasgupta, Papadimitriou and Vazirani
  • Introduction to Linear Optimization by Dimitris Bertsimas
  • The Design of Approximation Algorithms by Williamson and Shmoys
  • Approximation Algorithms by Vazirani
  • Randomized Algorithms by Motwani and Raghavan

Our treatment will often differ from that in books, and I may cover topics out of order. I will post an outline of topics covered in each lecture below, including source material.

Lectures
Aug 17
An O(n log n) algorithm for finding the closest pair of points in the plane. An O(n) algorithm for finding the median of a set of numbers.

References: Sections 33.4 and 9.3 from CLRS. My notes.

Aug 21
An O(n log n) for polynomial multiplication using the Fast Fourier Transfom

References: Chapter 30 from CLRS. My notes.

Aug 24
Integer multiplication by the Karatsuba algorithm. Matrix multiplication using Strassen's algorithm. Computing the min and max of an array, and lower bounds. Dynamic programming - the coin change problem.

References: My notes. Further references: for the Karatsuba algorithm, see the course handout by Babai. Strassen's matrix multiplication is from CLRS Section 4.2. The min-max problem is from CLRS Section 9.1.

Aug 28
Dynamic programming - optimal binary search trees. Matroids and greedy algorithms. The unit-size job scheduling problem.

References: My notes. Optimal BSTS are from CLRS Section 15.5, and CLRS Chapter 17 for greedy algorithms and matroids.

Sep 4, 7
Jaikumar will conduct these classes, on primality testing.
Sep 11, 14
Faster algorithms using better data structures for Dijkstra's algorithm: min heaps and Fibonacci heaps.

References: CLRS Section 24.3 for Dijkstra's algorithm, Chapter 6 for min heaps, and Chapter 19 for Fibonacci heaps. My notes: 1, 2.

Sep 18
Kruskal's algorithm for minimum spanning trees, and the union-find data structure.

References: Sariel Har-Peled's notes, available here. My notes are here

Sep 21
Union-find continued. Maximum flows and minimum cuts. Ford-Fulkerson, Edmonds-Karp.

References: Class notes, as well as Sections 26.1, 26.2 from CLRS.

Sep 25
Edmonds-Karp continued. The preflow-push algorithm.

References: Class notes, example, as well as Sections 26.4 from CLRS.

Sep 28
The preflow-push algorithm continued. All-pairs shortest paths algorithm (Johnson's algorithm).

References: Class notes, an example, as well as Sections 25.3, 26.4 from CLRS.

Oct 4
Maximum matching in bipartite graphs.

References: My notes. Lecture notes from a course taught by Naveen Garg.

October 5
Maximum matching in bipartite and general graphs. Berge's Lemma for general graphs, and Tutte's theorem.

References: My notes. Lecture notes from Naveen Garg.

October 16
Maximum matching in general graphs (contd). Randomized binary search trees.

References: My notes, and Naveen Garg's notes above.

October 23
Global min-cut - Karger's algorithm and Karger-Stein.

References: My notes. Lecture notes from a course by Russell Impagliazzo

October 30
Randomized algorithms for 2SAT and Weighted Max SAT, derandomization.

References: My notes. Notes by Leen Stougie.

November 2
Set Balancing and derandomization by pessimistic estimators. Introduction to linear programming, and an exponential time algorithm to solve a linear program.

References: My notes: (1) and (2). Jeff Erickson's notes, until Section 26.3.

November 6
Linear programming: total unimodularity.

References: My notes. Jeff Erickson's notes, continued from Section 26.3. I couldn't find a good reference for total unimodularity, so please refer to my notes.

November 9
Linear programming: duality, complementary slackness, and application to max-flow min-cut theorem.

References: My notes. Luca Trevisan's notes. We didn't do the proof of strong duality.

November 20
Computing mixed Nash equilibria in zero-sum games using linear programming duality.

References: My notes. Lecture notes by Costis Daskalakis.

November 23
Complexity classes: P, NP, co-NP, polynomial-time reductions and NP-hardness. Hardness of independent set and subset-sum.

References: My notes (these notes also contain the greedy algorithm for set cover). Chapter 34 in CLRS, though not Lemma 34.6, Theorem 34.9, 34.10, 34.13 (and others). Theorem 34.15 shows hardness of subset sum.

November 27
Linear programming based algorithms for set cover.

References: My notes. Chapters 14 and 15 from "Approximation Algorithms" by Vijay Vazirani.

November 30
A 2-approximation algorith minimum makespan scheduling.

References: My notes. Chapter 17 from "Approximation Algorithms" by Vijay Vazirani.

Assignment Policies
  • Each student gets 12 late days for assignments, which can be used in any combination, and for any reason (e.g., you could turn in assignment 2 six days late, assignment 3 three days late, and assignment 5 three days late).
  • The first assignment that is late after exhausting these late days will be graded out of 50% of the total marks. Any further late assignments will not be graded at all. Any assignment turned in more than 7 days late will not be graded at all.
  • You are encouraged to discuss the problems with others in the class, but you must write up the solution by yourself, in your own words.
  • Please write in your submission the people with whom you discussed the problems, as well as any references you used.
  • Please write clearly and legibly, and include how you arrived at the solution! All algorithms must be accompanied by proofs of correctness and runtime analysis, unless otherwise stated.
Assignments