DATA STRUCTURES AND ALGORITHMS IMPLEMENTED IN C++.
Each folder has the following files:
- FILENAME.h : The data-structure definitions, methods, variables are defined here.
- FILENAME.hpp : The implementations of different methods, functions defined in FILENAME.h are present in this file.
- main.cpp : This particular file contains an example code of implementations of data-structure/algorithm. Feel free to change it and add your own code :).
- Makefile : This file is responsible to link all the files together to form a single output file.
In order to excecute a particular data-structure, change directory to that particular folder and run the following command: make.
An output file while be created with following name: ** main.o **
Run the following command inorder to excecute the output file: ./main