double-hashing
There are 24 repositories under double-hashing topic.
pavlosdais/Abstract-Data-Types
A set of efficient data structures in C, created in a generic way
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.
Vaggelis-Arg/C-data-structures
Basic data structures in C with useful comments and explanations
rahul1947/Implementation-of-Data-Structures-and-Algorithms
Implementation of data structures (Lists, Stacks, Queues, Trees, Balanced Search Trees, Hashing, Graphs); Implementation of algorithms (Sorting and searching, Recursion, Graph algorithms).
rdtaylorjr/Hash-Table-Collision-Resolution-Algorithms
Resolves hash table collisions using linear probing, quadratic probing, and linear hashing. All data structures implemented from scratch. Optimized for efficient time and space complexity. Written in C++.
ipni/dhstore
:lock_with_ink_pen: Service to store double hashed indexed records
smmehrab/double-hashing-performance-evaluation
A python program to evaluate the performance of Double Hashing & Red Black Tree and to show comparison between them.
anserwaseem/Implementation-of-HashMap
This is an implementation of HashMap while tackling some collision resolution techniques.
exbotanical/libhash
Collision-free hash tables for the C programming language
myconejo/Pure-vs-Dirty
Purely Functional Haskell vs Imperitive C, C++ and Python
uysalemre/Analysis-Of-Algorithms-1
Merge Sort-Insertion Sort-Heap Sort- Hash Table algorithms are included in these projects.
ajay340/Hashtable-Collisions-Comparison
Comparison of the number of collisions caused by inserting keypairs in a hashtable with respect to Linear Probing and Double Hashing methods.
akashmeshram/Javascript-Hash-Table
A Hash table written in javascript.
emreyilmaztr/TR-ENG-Dictionary-Using-Hashing-Algorithm
Dictionary(ENG-TR) Using Hashing Algorithms
farazdagi/hash-iter
Enhanced double hashing in Rust
nikhil-jindal12/HashTable
Contains the implementation for a basic hashtable that allows linear probing and double hashing.
achyutb6/double-hashing-and-robin-hood-hashing
Implementation of Double hashing and robin hood hashing
andrewalkermo/double-hashing
Trabalho que implementa um arquivo estruturado como uma tabela hash, utilizando-se o método de resolução de colisão Hashing Duplo (Double Hashing).
Atul-Acharya-17/Data-Structures
Implementation of Common Data Structures in C++
fazledyn/L2T2
BUET CSE Level 2 Term 2 Sessional Offlines
Harshal-Jaiswal/probing
android app gives linear probing, quadratic probing and double hashing tables depending upon given input.
subhalingamd/hashing
Analysing the asymptotic complexities and collision rate of Double Hashing and Separate Chaining technique using Java, done as a part of course (COL106) assignment