https://github.com/csabapalfi/algorithm-design-manual
notes for 'The Algorithm Design Manual' by Steven S. Skiena
https://github.com/csabapalfi/algorithm-design-manual
algorithms book notes work-in-progress
Last synced: 2 months ago
JSON representation
notes for 'The Algorithm Design Manual' by Steven S. Skiena
- Host: GitHub
- URL: https://github.com/csabapalfi/algorithm-design-manual
- Owner: csabapalfi
- Created: 2012-12-27T14:28:01.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-03-23T13:45:11.000Z (about 12 years ago)
- Last Synced: 2025-01-25T14:21:51.968Z (4 months ago)
- Topics: algorithms, book, notes, work-in-progress
- Homepage:
- Size: 227 KB
- Stars: 27
- Watchers: 7
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Algorithm Design Manual notes
My work-in-progress notes for the book titled '[The Algorithm Design Manual](http://www.algorist.com/)' by Steven S. Skiena.
### 1. Introduction to Algorithm Design
* [Reasoning about Correctness](1.3-correctness.md)
* [Modeling the Problem](1.4-modeling.md)### 2. Algorithm Analysis
* [Algorithm Analysis](2.1-algorithm_analysis.md)
* [The Big Oh Notation](2.2-the_big_oh_notation.md)
* [Growth Rates and Dominance Relations](2.3-dominance_relations.md)
* [Logarithms](2.6-logarithms.md)### 3. Data Structures
* [Arrays and Linked Lists](3.1-arrays_and_linked_lists.md)
* [Stacks and Queues](3.2-stacks_and_queues.md)
* [Dictionaries](3.3-dictionaries.md)
* [Binary Search Trees](3.4-binary_search_trees.md)
* Priority Queues
* Hashing and Strings
* Specialized Data Structures...other chapters in progress