@@ -13,7 +13,7 @@ Gradle is used for development.
1313## Full List (in alphabetical order):
1414
1515## Data Structures
16- - Adelson-Velskii and Landis (AVL) Binary Search Tree
16+ - [ Adelson-Velskii and Landis (AVL) Binary Search Tree] ( src/main/java/dataStructures/avlTree )
1717- [ Disjoint Set / Union Find] ( src/main/java/dataStructures/disjointSet )
1818 * [ Quick Find] ( src/main/java/dataStructures/disjointSet/quickFind )
1919 * [ Weighted Union] ( src/main/java/dataStructures/disjointSet/weightedUnion )
@@ -25,7 +25,7 @@ Gradle is used for development.
2525 * Max heap implementation
2626- [ Linked List] ( src/main/java/dataStructures/linkedList )
2727- LRU Cache
28- - Minimum Spanning Tree
28+ - Minimum Spanning Tree
2929 * Kruskal
3030 * Prim's
3131 * Boruvska
@@ -80,12 +80,11 @@ Gradle is used for development.
80804 . Trees
8181 * [ Binary search tree] ( src/main/java/dataStructures/binarySearchTree )
8282 * [ AVL-tree] ( src/main/java/dataStructures/avlTree )
83- * Orthogonal Range Searching
8483 * [ Trie] ( src/main/java/dataStructures/trie )
8584 * [ B-Tree] ( src/main/java/dataStructures/bTree )
8685 * Red-Black Tree (Not covered in CS2040s but useful!)
87- * Kd-tree (** WIP** )
88- * Interval tree (** WIP** )
86+ * Orthogonal Range Searching (** WIP** )
87+ * Interval Trees (** WIP** )
89885 . [ Binary Heap] ( src/main/java/dataStructures/heap ) (Max heap)
90896 . [ Disjoint Set / Union Find] ( src/main/java/dataStructures/disjointSet )
9190 * [ Quick Find] ( src/main/java/dataStructures/disjointSet/quickFind )
@@ -97,14 +96,14 @@ Gradle is used for development.
97968 . Basic graphs (** WIP** )
9897 * Depth-first search
9998 * Breadth-first search
100- 9 . Graphs
99+ 9 . Graphs ( ** WIP ** )
101100 * Bellman-ford
102101 * Dijkstra
103- * Directed acyclic graphs algorithms ( ** WIP ** )
102+ * Directed acyclic graphs algorithms
104103 * Post-order DFS
105104 * Kahn's
106- * Floyd Warshall ( ** WIP ** )
107- 10 . Minimum spanning tree
105+ * Floyd Warshall
106+ 10 . Minimum spanning tree ( ** WIP ** )
108107 * Prim's
109108 * Kruskal's
110109
0 commit comments