-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(hash_table): support custom free value function
- Loading branch information
1 parent
85b77dd
commit 97d239f
Showing
6 changed files
with
75 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,8 @@ | ||
# libhash | ||
|
||
Collision-free hash tables and hash sets for C. | ||
|
||
Implemented as open-addressed and double-hashed. | ||
|
||
For best performance, initialize with a prime number. | ||
|
||
## TODOs | ||
|
||
- [ ] add docs | ||
- [ ] complete examples | ||
* Collision-free hash tables and hash sets for C. | ||
* Implemented as open-addressed and double-hashed. | ||
* Extremely simple and easy-to-use API. | ||
* For documentation, see the header file [here](include/libhash.h). | ||
* For best performance, initialize with a prime number. | ||
* For examples, see [examples](examples/main.c) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.