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: about 2 months 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 (over 5 years ago)
- Default Branch: main
- Last Pushed: 2023-03-03T13:14:43.000Z (over 3 years ago)
- Last Synced: 2026-05-01T02:34:50.809Z (about 2 months 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
```