https://github.com/maxrt101/c-data-structures
Some common data structures in c11
https://github.com/maxrt101/c-data-structures
c11 data-structures
Last synced: 2 months ago
JSON representation
Some common data structures in c11
- Host: GitHub
- URL: https://github.com/maxrt101/c-data-structures
- Owner: maxrt101
- Created: 2021-03-07T17:31:25.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-01-06T00:26:30.000Z (over 2 years ago)
- Last Synced: 2023-03-10T05:22:21.338Z (over 2 years ago)
- Topics: c11, data-structures
- Language: C
- Homepage:
- Size: 16.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# c-data-structures
Common data structures implemented in c11.## Installation:
Prerequisites: `gcc` or `clang` & `make`
Steps:
- Clone the repo
- Run `make`
- In `build/` folder you'll find `include/` folder with all header files and in `lib` - `libcds.a`If you need to install cds into a different folder use `make PREFIX=/path/to/install/folder`
## Tests:
To run tests execute `make test`## TODO/DONE:
- [x] carray - Dynamic array
- [X] clist - Linked list
- [x] cstring - String wrapper
- [ ] ctable - Hash map
- [ ] cbtree - Binary tree