This repo is implementations of common Data Structures in cpp. The node class conssists only of a character variable and adequete number of node pointers. It contains custom classes of the following are present:
- LinkedList
Singly linked list that stores characters.
- void insert
- void ring
- void swap
- void getHead
- void sort
- Tree(WIP):
Designed as a binary tree. Insertion on the first free left-most branch.
- int getDepth
- void insert
- void getEmpty
- void Display