Data structure in java samples, with unit test cases
1 - SinglyLinkedList - All operations with test cases
2 - DoublyLinkedList - All operations with test cases
3 - CircularLinkedList - All operations with test cases
4 - Stack - Array implementation of stack with test cases
5 - Stack - Dynamic Array implementation of stack (size get doubles when full) with test cases
6 - Stack - LinkedList implementation of stack with test cases
7 - Queue - Array implementation of queue with test cases