https://github.com/aichingm/libds
libds is a collection of header only data structures
https://github.com/aichingm/libds
c data-structures header-only header-only-library
Last synced: 12 months ago
JSON representation
libds is a collection of header only data structures
- Host: GitHub
- URL: https://github.com/aichingm/libds
- Owner: aichingm
- License: agpl-3.0
- Created: 2024-09-30T13:22:25.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-24T22:43:50.000Z (over 1 year ago)
- Last Synced: 2025-02-06T08:31:47.702Z (about 1 year ago)
- Topics: c, data-structures, header-only, header-only-library
- Language: C
- Homepage:
- Size: 51.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Libds
Libds is a collection of header only data structures, released under the [AGPL-3.0-only](https://spdx.org/licenses/AGPL-3.0-only.html).
## List
[list.h](./src/list.h): a simple to use zero allocation doubly linked list.
## Hash Map
[hmap.h](./src/hmap.h): a open addressing hash map using linear probing as collision resolution mechanism.
## License
```
Copyright (C) 2024 Mario Aichinger
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, version 3.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with this program. If not, see .
```