|
1 | | -# [Algorithm Design Manual notes](http://csaba.palfi.me/algorithm_design_manual.html) |
| 1 | +# Algorithm Design Manual notes |
2 | 2 |
|
3 | | -My work-in-progress notes for the book titled '[The Algorithm Design Manual](http://www.algorist.com/)' by Steven S. Skiena. |
| 3 | +My work-in-progress notes for the book titled '[The Algorithm Design Manual](http://www.algorist.com/)' by Steven S. Skiena. |
| 4 | + |
| 5 | +### 1. Introduction to Algorithm Design |
| 6 | + |
| 7 | +* [Reasoning about Correctness](1.3-correctness.md) |
| 8 | +* [Modeling the Problem](1.4-modeling.md) |
| 9 | + |
| 10 | +### 2. Algorithm Analysis |
| 11 | + |
| 12 | +* [Algorithm Analysis](2.1-algorithm_analysis.md) |
| 13 | +* [The Big Oh Notation](2.2-the_big_oh_notation.md) |
| 14 | +* [Growth Rates and Dominance Relations](2.3-dominance_relations.md) |
| 15 | +* [Logarithms](2.6-logarithms.md) |
| 16 | + |
| 17 | +### 3. Data Structures |
| 18 | + |
| 19 | +* [Arrays and Linked Lists](3.1-arrays_and_linked_lists.md) |
| 20 | +* [Stacks and Queues](3.2-stacks_and_queues.md) |
| 21 | +* [Dictionaries](3.3-dictionaries.md) |
| 22 | +* [Binary Search Trees](3.4-binary_search_trees.md) |
| 23 | +* Priority Queues |
| 24 | +* Hashing and Strings |
| 25 | +* Specialized Data Structures |
| 26 | + |
| 27 | +...other chapters in progress |
0 commit comments