/Java-data-structures

A list of data structures(and their implementations) I had fun implementing in Java for educational purposes

Primary LanguageJava

Java-data-structures

A list of data structures(and their implementations) I had fun implementing in Java

List

  1. AVL tree : https://github.com/waveyboym/Java-data-structures/tree/main/AVL%20trees
  2. M-way B-tree : https://github.com/waveyboym/Java-data-structures/tree/main/b-tree
  3. M-way B+ tree : https://github.com/waveyboym/Java-data-structures/tree/main/b-plus%20trees

References and resources

  1. https://www.programiz.com/dsa/avl-tree
  2. https://www.cs.usfca.edu/~galles/visualization/AVLtree.html
  3. https://www.baeldung.com/java-avl-trees#:~:text=What%20Is%20AVL%20Tree%3F,according%20to%20some%20balancing%20rules.
  4. https://www.programiz.com/dsa/b-tree
  5. https://www.cs.usfca.edu/~galles/visualization/BTree.html
  6. https://www.programiz.com/dsa/b-plus-tree
  7. https://www.cs.usfca.edu/~galles/visualization/BPlusTree.html