open-addressing
There are 35 repositories under open-addressing topic.
DavidLeeds/hashmap
Templated type-safe hashmap implementation in C using open addressing and linear probing for collision resolution.
dadhi/ImTools
Fast and memory-efficient immutable collections and helper data structures
rigtorp/HashMap
An open addressing linear probing hash table, tuned for delete heavy workloads
gaujay/indivi_collection
A collection of std-like containers written in C++11. Features fast unordered flat map/set, configurable double-ended vector and sparse deque.
lcsmuller/oa-hash
A lightweight single-header open-addressing hashtable implementation in ANSI C
rahul1947/SP07-Comparison-of-Hashing-Implementations
Comparison of Hashing Algorithms - Double Hashing, Robin Hood Hashing Cuckoo Hashing with Java's inbuilt HashMap/ HastSet over million of add(), contains() and remove() operations.
hamednikzad/pure-data-structures-and-algorithms-csharp
Data structures and algorithms implementation in pure C#!
ostafen/hopmap
Yet another efficient hashmap implementation for Golang based on the hopscotch open addressing scheme.
praabindhp/Open_Address_Collision
C Program For Open Address Collision
SpeedyIguana/Hashing
Implementing Hash-Table Lexicon using open-addressing and quadratic probing.
CodeSopranos/hashing-algorithms
The project on comparison of different hashing approaches
javamultiplex/data-structure
This repository contains all the data structures and their application in Java.
jhomswk/Hash_Table
Hash-Table implementation using Python. (Chaining, Open Addressing & Resizing)
JulStrat/strmap
Simple alternative to hcreate_r, hsearch_r, hdestroy_r GNU extensions
m4lf0rm3d/BIJLI-Hash-Table-Database
In this project, I used CSV module to implement CRUD operations on CSV file using Python Programming Language. The CSV file has over 400,000 records of phone numbers. Searching them linearly may cause a lot of time. Therefore, I used Hash Table to search phone numbers in O(1).
MatthewC221/hash
Hash lib in C
reshifr/rhi
Container with linear probing resolver collision using LCFS-hashing.
tony-josi/generic_hash_table
Hash Table implementation using Open addressing & Linear probing.
baedirin/cs261-assignment6
CS 261 Data Structures portfolio assignment: Hashmap using open addressing & chaining
ddoroshev/hashmap
🚀 C-based hashmap with 🔑 char* keys and 🔢 integer values. Supports setting/getting values, deletion, and auto-resizing.
dobell733/hash_map
A hash map implemented in Python
farazdagi/hash-iter
Enhanced double hashing in Rust
juansjimenez/subtree-occurrence-finder
🌳 A subtree occurrence finder implemented with an Open Addressing Hash Table in C.
kristinical/hashmap_data_structures
Two HashMap implementations: 1) Separate chaining with singly linked lists; 2) Open addressing with quadratic probing
mirunamariafatu/HashTable-Open-Addressing
A Data-Structure project that aims to count the occurrences of various strings, using a hashtable in which the collisions are handled with linear probing.
PolleAnker/Hashing-Algorithms
Implementation of Hashing with collision handling, utilizing Chaining, Linear Probing, Quadratic Probing and Double Hashing.
yuvraj97/Algorithms
Inspired by MIT 6.006
donheshanthaka/hash-table-in-c
Hash table implementation in c (Detailed comments on operation)
egorov-m/algLab-6
Алгоритмы: Тема 6. Хэш-таблицы.
JJLIN1024/simpleHashTable
A simple open-addressing hash table with friendly user interface.
jtonyortiz/HashingAlgorithms
Hashing Algorithms in C++
KjetilIN/rs-hash-table
Implementation of hash table with Rust. Using open addressing for handling collision and djb2 as the hash function.
m-bronnikov/FastHashTable
Hash map with open-addressing
theobori/tinyhash
Hashmap multiple implementations library for C
xiaonanln/py3dict
py3dict - implementing python3 dict in python2.7