From 619a2cd9ef6484cd80e9c753b462d65977fc2200 Mon Sep 17 00:00:00 2001 From: webbrain-one <295484252+webbrain-one@users.noreply.github.com> Date: Mon, 27 Jul 2026 11:44:44 +0300 Subject: [PATCH] docs: add English README --- README.en-US.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 README.en-US.md diff --git a/README.en-US.md b/README.en-US.md new file mode 100644 index 0000000..103d006 --- /dev/null +++ b/README.en-US.md @@ -0,0 +1,19 @@ +# introductionToAlgorithms + +### Review Plan + +1. Complete basic data structures + +- [x] Linked List +- [x] Stack +- [x] Queue +- [x] Binary Tree, Binary Search Tree, Red-Black Tree, Balanced Tree, Trie +- [x] Heap, Graph + +2. Basic algorithms +- [x] Sorting algorithms (Heap Sort, Quick Sort, Merge Sort, Bubble Sort) +- [x] Naive matching, Rabin-Karp algorithm (saves computation time for m), KMP string matching algorithm +- [x] Graph algorithms (Minimum Spanning Tree, Shortest Path, Depth-First Search, Breadth-First Search) +- [x] Dynamic Programming (need to try more scenarios and encounter more transition equations) +- [x] Union-Find +- [x] LRU, LFU