add readme with links

This commit is contained in:
onyx-and-iris 2024-01-17 22:11:50 +00:00
parent f310eda779
commit 2ad10efb47

52
README.md Normal file
View File

@ -0,0 +1,52 @@
# Grokking Algorithms 2E v4
### Binary Search
[chapter1][binary]
### Selection Sort
[chapter2][selection_sort]
### Recursion
[chapter3][recursion]
### Quicksort
[chapter4][quick_sort]
### Breadth-First Search
[chapter6][quick_sort]
### Trees
[chapter7][trees]
### Dijkstra
[chapter9][dijkstra]
### Greedy
[chapter10][greedy]
### Dynamic Programming
[chapter11][dynamic]
### K-Nearest Neighbours
[chapter12][knn]
[binary]: ./chapter1/
[selection_sort]: ./chapter2/
[recursion]: ./chapter3/
[quick_sort]: ./chapter4/
[bfs]: ./chapter6/
[trees]: ./chapter7/
[dijkstra]: ./chapter9/
[greedy]: ./chapter10/
[dynamic]: ./chapter11/
[knn]: ./chapter12/