Add priority queue

This commit is contained in:
Hugo Mårdbrink 2025-04-19 16:01:09 +02:00
parent ccf1950cf4
commit 6302207a1d
4 changed files with 163 additions and 0 deletions

View file

@ -19,6 +19,7 @@ Use shorter more concise names for common C types.
### Data structures
- `Dynamic array`: A dynamic array that can grow and shrink in size.
- `Hash map`: A hash map that uses murmur3, open addressing (double hashing) and tombstone deletion.
- `Priority queue`: A priority queue that uses a binary heap, custom comparator.
## Building