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: 8 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 (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-25T19:22:25.000Z (over 1 year ago)
- Last Synced: 2025-06-22T07:05:57.016Z (9 months ago)
- Topics: algorithms, cmake, cpp, data-structures, dsa, gtest
- Language: C++
- Homepage:
- Size: 16.6 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.