This repository includes some basic algorithms associated with data strucutres. Mainly in c or c++.
To use Google test under this subdirectory:
- Create a direcotory called "lib":
mkdir lib
- Go to lib directory:
cd lib
- Clone google test from Github:
git clone https://github.com/google/googletest.git
- Create a direcotory called "build":
mkdir ../build
- Go to build directory:
cd ../build
- Build configuration:
cmake ..
- Compile & Run:
make && ./Data_Structure