From 2ad10efb47e1306a1f60db27752b51eabbe9d0a7 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Wed, 17 Jan 2024 22:11:50 +0000 Subject: [PATCH] add readme with links --- README.md | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..ad8255f --- /dev/null +++ b/README.md @@ -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/