This repository has been archived by the owner on Jun 1, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
open hash: use open addressing with linear probing (WIP)
and a layout similar to array_he, inlined 1-2 word hash array. variants to try: simple linear, double, quadratic, robin-hood, hopscotch. khash tried double hashing and found it slower. robin-hood with backward deletion propagation would be an alternative, but first we need to re-architecture and abstract the various probing implementations and search loops scattered all over. See GH #24
- Loading branch information
Showing
8 changed files
with
208 additions
and
1,279 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
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.