https://github.com/stefanasandei/dsa
Data Structures & Algorithms implemented in C++
https://github.com/stefanasandei/dsa
algorithms cmake cpp data-structures dsa gtest
Last synced: 4 months ago
JSON representation
Data Structures & Algorithms implemented in C++
- Host: GitHub
- URL: https://github.com/stefanasandei/dsa
- Owner: stefanasandei
- License: mit
- Created: 2024-08-11T13:40:39.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-08-12T15:14:23.000Z (10 months ago)
- Last Synced: 2024-08-13T17:31:00.850Z (10 months ago)
- Topics: algorithms, cmake, cpp, data-structures, dsa, gtest
- Language: C++
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Data Structures & Algorithms
This is my implementation of common data structures and algorithms in modern C++. The project is structured within two
main projects: a library and a test suite:- `external`: 3rd party libraries (only gtest for now)
- `lib`: the library containing the data structures and algorithms
- `test`: test suite using Google Test## Setup
Clone the repository:
```
git clone https://github.com/stefanasandei/dsa.git --recursive
```Create a build directory (this will contain the solution files):
```
mkdir build
cd build
```Generate the project:
```
cmake ..
```Now open the build directory in a file explorer, and open the solution in your preferred IDE. On startup, set
the `dsa_tests` as the startup project.## License
[MIT](LICENSE) © [Asandei Stefan-Alexandru](https://asandei.com). All rights reserved.