Analysis of Algorithms

 
 
Unit 1
Unit 2: Divide and Conquer Algorithms
Unit 3: Graphs 1 (BFS, DFS, Greedy)
Unit 4: Graph 2 (Shortest Path, Minimum Spanning Tree)
Unit 5: Dynamic Programming and Randomized Algorithms
Unit 6: Linear Programming
Unit 7: Limits of Computation
Unit 8: Limits of Computation 2

Topics

Unit 2

Techniques for the Analysis of Algorithms
Lower/Upper bounds analysis
Summation Techniques
Recurrence relations
Estimating upper and lower bounds
Searching
Finding maximum value
State space algorithms
Finding the ith best element
Optimal sorting
Amortized Analysis
Divide and Conquer Algorithms
Master Theorem
Matrix Multiplications
Binary Search
Merge Sort
FFT

Unit 3: Graphs 1

Graph terminology and representation
Describe directed, undirected, labeled graphs and subgraphs
Be able to describe vertices and edges
Graph data structures
Be able to implement graphs as data structures
Graph traversals
Depth-first search
Breadth-first Search
Topological sort
Greedy Algorithms
Understand the basic characteristics and operation of greedy algorithms

Unit 4: Graphs 2

Describe Shorted Path Problems
Bellman-Ford
Dijkstra
Define Minimum-cost spanning tree and approaches to implement it
Understand and apply algorithms to solve shortest path problems
Prim’s algorithm
Kruskal’s algorithm
Articulate the characteristics of ‘greedy’ algorithms

Unit 5: Dynamic Programming

Dynamic Programming
Apply dynamic programming as an algorithm design strategy.
Articulate how dynamic programming differs from a divide and conquer approach.
The Knapsack Problem
Implement a dynamic programming algorithm to solve the knapsack problem.
Randomized Algorithms (Shaffer’s Textbook)
Describe the features and functioning of randomized algorithms.

Unit 6: Linear Programming

Recognize and be able to define the differences between the P, NP, and Co-NP classes

Unit 7: Limits of Computation

Recognize and be able to define the differences between the P, NP, and Co-NP classes
Recognize and be able to describe reductions and how they are used in determining if a problem is NP hard or NP complete
Define what a ‘hard’ problem is from the perspective of algorithm analysis
Identify problems that are NP complete
 
 
 

Resources

Textbooks

Sedgewick & Wayne's Course (Princeton University)

Focuses on implementations (using Java), away from proofs and math details

Tim Roughgarden Course (Stanford)

MIT

Very theoretical (pure computer science theory and discrete math)

Berkley

Skiena’s Lectrures and Book (Stony Brook University)

Optimization

Moustafa Ibrahim Courses

Other

 

Algorithm Implementations and Software