This repository contains the Data Structure implemention and Few Algorithms in Java with comment for references.
The Data Structure included in the repository are:
- Single Linked List
- Double Linked List
- Stack impelementation using Linked List
- Queue implementation using Linked List
- Binary Tree implementation using Linked List
- • In-order traversal using recursion
- • Post-order traversal using recursion
- • Pre-order traversal using recusion
- • Level-order traversal using Queue