Skip to content

Latest commit

 

History

History
16 lines (16 loc) · 521 Bytes

File metadata and controls

16 lines (16 loc) · 521 Bytes

cpp

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:

  1. LinkedList Singly linked list that stores characters.
    • void insert
    • void ring
    • void swap
    • void getHead
    • void sort
  2. Tree(WIP): Designed as a binary tree. Insertion on the first free left-most branch.
    • int getDepth
    • void insert
    • void getEmpty
    • void Display