https://github.com/christosgalano/data-structures
A header-only C++ library containing implementations of various data structures.
https://github.com/christosgalano/data-structures
cmake cpp data-structures github-actions gtest
Last synced: 21 days ago
JSON representation
A header-only C++ library containing implementations of various data structures.
- Host: GitHub
- URL: https://github.com/christosgalano/data-structures
- Owner: christosgalano
- License: mit
- Created: 2021-02-28T12:12:27.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2023-03-03T13:14:43.000Z (about 3 years ago)
- Last Synced: 2024-12-31T15:12:58.285Z (about 1 year ago)
- Topics: cmake, cpp, data-structures, github-actions, gtest
- Language: C++
- Homepage:
- Size: 153 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
[](https://github.com/christosgalano/Data-Structures/actions/workflows/ci.yaml)
## General
This project provides a library of several data structures implementations and also tests that ensure their proper functionality.
The tests are based on the GTest framework.
## Setup
``` bash
sudo apt-get update
sudo apt-get install cmake
sudo apt-get install g++
```
## Build and Test
```bash
cmake -B ./build -DENABLE_TESTING=ON -DCMAKE_BUILD_TYPE=debug
cmake --build ./build --config debug
cd ./build
make install
ctest -C debug
```