Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/emperoryp7/data-structures
C++ Custom Template Library
https://github.com/emperoryp7/data-structures
cpp data-structures
Last synced: about 1 month ago
JSON representation
C++ Custom Template Library
- Host: GitHub
- URL: https://github.com/emperoryp7/data-structures
- Owner: EmperorYP7
- Created: 2021-07-02T22:45:04.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-01-17T14:22:20.000Z (about 3 years ago)
- Last Synced: 2024-11-09T23:36:31.612Z (3 months ago)
- Topics: cpp, data-structures
- Language: C++
- Homepage:
- Size: 103 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Custom Data Structures
This repository contains custom data structures implemented in C++17.
Although there might be no realworld use of this, but this serves as a way for me
to take a deeper dive into various data structures and concepts like
iterators and memory optimizations.Libraries can be found in `/src/headers`.
# How to run
```bash
mkdir build
cd build
cmake ..
cmake --build . --config Debug --target all -j 10 --
./src/test
```