CR: COMP 3804 Learning Objectives: Difference between revisions
Line 16: | Line 16: | ||
=Topics= | =Topics= | ||
COMP 3804 offerings from Fall and Winter 2010-2011 by Anil and Michiel | COMP 3804 offerings from Fall and Winter 2010-2011 by Anil and Michiel | ||
* Introduction: Whats an Algorithm, | * Introduction: Whats an Algorithm, bib-O notation, recurrence relation, masters theorem. | ||
* Divide and Conquer: | * Divide and Conquer: Multiplying two n-bit integers, merge-sort, Matrix Multiplication .. | ||
* Disjoint Sets Data Structure | * Disjoint Sets Data Structure? | ||
* | * Graphs: Representation, Traversals - DFS & BFS, Shortest Paths (including A* heuristic). | ||
* Greedy Algorithms: Minimum SPanning Trees, Huffman Encodings, ... | * Greedy Algorithms: Minimum SPanning Trees, Huffman Encodings, ... | ||
* Dynamic Programming: Edit Distance, Longest Common Sequence, ... | * Dynamic Programming: Edit Distance, Longest Common Sequence, ... | ||
* Linear Programming: What it is, how to express seveal problems as LP problems (Flow, Shortest Paths, Matching), ideas of simplex algorithm (or the randomized algorithm). [This was never covered before] | * Linear Programming: What it is, how to express seveal problems as LP problems (Flow, Shortest Paths, Matching), ideas of simplex algorithm (or the randomized algorithm). [This was never covered before] | ||
* NP-Completeness: search problems, polynomial time reductions, ideas of Cooks Theorem | * NP-Completeness: search problems, polynomial time reductions, ideas of Cooks Theorem. | ||
* Whats Next: Brief idea on how to cope with NP-Complete problems - one lecture introduction to approximation algorithms, exhaustive search and search heuristics. |
Revision as of 17:52, 10 March 2011
Calendar Description
Assumed Background
COMP 2402 and COMP 2804.
Learning Objectives
Objectives for the whole course
- Designing algorithms, their correctness and efficiency.
- How to think about abstract computation - develop algorithmic intution - how to attack a problem algorithmically.
- Algorithmic techniques - learn key techniques (greed, divid-and-conquer, dynamic programming, LP, ..) - which technique to use for a given problem.
- How to compare one algorithmic solution versus another for a problem
- How to express the algorithmic solution - pseodcode - steps - analyze - argue that it is correct - essentially how will you explain your algorithmic solutions to others?
Topics
COMP 3804 offerings from Fall and Winter 2010-2011 by Anil and Michiel
- Introduction: Whats an Algorithm, bib-O notation, recurrence relation, masters theorem.
- Divide and Conquer: Multiplying two n-bit integers, merge-sort, Matrix Multiplication ..
- Disjoint Sets Data Structure?
- Graphs: Representation, Traversals - DFS & BFS, Shortest Paths (including A* heuristic).
- Greedy Algorithms: Minimum SPanning Trees, Huffman Encodings, ...
- Dynamic Programming: Edit Distance, Longest Common Sequence, ...
- Linear Programming: What it is, how to express seveal problems as LP problems (Flow, Shortest Paths, Matching), ideas of simplex algorithm (or the randomized algorithm). [This was never covered before]
- NP-Completeness: search problems, polynomial time reductions, ideas of Cooks Theorem.
- Whats Next: Brief idea on how to cope with NP-Complete problems - one lecture introduction to approximation algorithms, exhaustive search and search heuristics.