Skip to content

Latest commit

History

History
91 lines (58 loc) 路 2.67 KB

algorithms.md

File metadata and controls

91 lines (58 loc) 路 2.67 KB

Algorithms and Data Structures List

List of algorithms and code examples in the book.

Chapter 1. Basics

1.1 Ideas

Chapter 2: Complexity

2.1 Counting Time

Chapter 3. Strategy

3.1 Iteration

3.2 Recursion

3.3 Brute Force

3.4 Backtracking

3.5 Heuristics

3.6 Divide and Conquer

3.7 Dynamic Programming

3.8 Branch and Bound

Chapter 4. Data

4.2 Common Abstractions

4.3 Data Structures

Chapter 5. Algorithms

Chapter 6. Databases

Chapter 7. Computers

Chapter 8. Programming