A list of data structures(and their implementations) I had fun implementing in Java
- AVL tree : https://github.com/waveyboym/Java-data-structures/tree/main/AVL%20trees
- M-way B-tree : https://github.com/waveyboym/Java-data-structures/tree/main/b-tree
- M-way B+ tree : https://github.com/waveyboym/Java-data-structures/tree/main/b-plus%20trees
- https://www.programiz.com/dsa/avl-tree
- https://www.cs.usfca.edu/~galles/visualization/AVLtree.html
- https://www.baeldung.com/java-avl-trees#:~:text=What%20Is%20AVL%20Tree%3F,according%20to%20some%20balancing%20rules.
- https://www.programiz.com/dsa/b-tree
- https://www.cs.usfca.edu/~galles/visualization/BTree.html
- https://www.programiz.com/dsa/b-plus-tree
- https://www.cs.usfca.edu/~galles/visualization/BPlusTree.html