An open API service indexing awesome lists of open source software.

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

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 .

```