mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-02-04 05:44:35 +00:00
[PR #1532] [CLOSED] feat: Add Jenkins Lookup3 hash function #2143
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/TheAlgorithms/C/pull/1532
Author: @cptr0
Created: 11/22/2025
Status: ❌ Closed
Base:
master← Head:master📝 Commits (4)
e1f7e51Add 32-bit Jenkins Lookup3 hasha236a2cMinor tweaksbcd8690Merge pull request #1 from cptr0/cptr0-Lookup3-17d25227Add Lookup3 algorithm to README📊 Changes
2 files changed (+107 additions, -0 deletions)
View changed files
📝
hash/README.md(+1 -0)➕
hash/hash_lookup3.c(+106 -0)📄 Description
Description of Change
I implemented the Jenkins Lookup3 hash function in C.
This includes the hashing function, an example usage, and a test. The implementation follows the algorithm described on the Wikipedia page (linked below).
https://en.wikipedia.org/wiki/Jenkins_hash_function
References
Checklist
Notes:
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.