All important data structures in java without using util library.
- LinkList Implementation.
- Stack Implementation in Java.
- Queue implementation in Java.
- Deque using DoublyLinkedList (custom).
- LRU Cache implementation using Deque and hashMap.
- Binary Min Heap in Java.
- Binary Search Tree implementation.
- AVL Tree Implementation in Java.