#
hash-table
Here are 142 public repositories matching this topic...
A collection of powerful data structures
java
stack
queue
graph
trie
priority-queue
data-structures
balanced-tree
heap
linkedlist
binarytree
fenwick
segmenttree
suffixarray
unionfind
suffixtree
hash-table
disjoint-set
segment-tree
union-find
-
Updated
Jun 5, 2020 - Java
Embedded key-value store for read-heavy workloads written in Go
-
Updated
May 4, 2020 - Go
C++ implementation of a fast hash map and hash set using robin hood hashing
-
Updated
Aug 23, 2020 - C++
C++ implementation of a fast hash map and hash set using hopscotch hashing
-
Updated
Aug 8, 2020 - C++
C++ hash map and hash set which preserve the order of insertion
-
Updated
Jun 22, 2020 - C++
C++ implementation of a memory efficient hash map and hash set
-
Updated
Aug 30, 2020 - C++
High-quality LeetCode solutions
javascript
python
tree
memoization
algorithm
data-structure
stack
queue
leetcode
graph
iteration
trie
recursion
greedy
dfs
bfs
hash-table
binary-search
union-find
back-tracking
-
Updated
Sep 2, 2020 - JavaScript
Common data structures and algorithms implemented in JavaScript
tree
memoization
algorithm
linked-list
stack
queue
algorithms
graph
graph-algorithms
array
data-structures
bitwise
a-star
dijkstra
shortest-paths
binary-heap
sorting-algorithms-implemented
hash-table
breadth-first-search
-
Updated
Jan 13, 2020 - JavaScript
C++ implementation of a fast and memory efficient hash map and hash set specialized for strings
-
Updated
Jun 22, 2020 - C++
Full featured consistent hashing python library compatible with ketama
-
Updated
May 26, 2020 - Python
Scalable Hashing on Persistent Memory
-
Updated
Aug 22, 2020 - C++
-
Updated
Apr 27, 2020 - Python
Library of data containers and data structures for C programming language.
c
map
library
avl-tree
stack
queue
datastructures
containers
collections
heap
hash-table
collections-c
proirity-queue
-
Updated
Jun 6, 2020 - C
gBolt--very fast implementation for gSpan algorithm in data mining
data-mining
multi-threading
thread
openmp
cpp11
hash-table
graph-mining
task-parallel
gspan
gspan-algorithm
-
Updated
Oct 29, 2019 - C++
A repo full of Computer Science theory used for Coding interviews and more! Including Data Structures, Sort and Search Algorithms and more!
-
Updated
Oct 5, 2019 - Python
list
tree
algorithm
data-structure
algorithms
octree
hash
binary-search-tree
red-black-tree
rbtree
hash-table
balanced-search-trees
search-trees
libds
algorithms-datastructures
forward-list
-
Updated
May 29, 2020 - C
Various useful data structures in Python
python
tree
stack
queue
algorithms
graph
data-structures
heap
hash-table
object-oriented-programming
-
Updated
Nov 14, 2019 - Jupyter Notebook
C/C++ library for dynamic data structures, regular expressions, lexical analysis & more...
c
c-plus-plus
linked-list
regular-expression
documentation-tool
lexical-analysis
regular-expression-engine
regular-expressions
hash-table
dynamic-arrays
prototype-generator
-
Updated
Jul 20, 2020 - C
Fast, data-oriented, stdlib-style hash table
-
Updated
Jan 17, 2017 - C++
Popular algorithms on C#, data structures and solutions for Cracking the Code Interview
avl-tree
algorithms
cracking-the-coding-interview
data-structures
binary-search-tree
red-black-tree
sorting-algorithms
hash-table
-
Updated
Jan 21, 2017 - C#
This project is meant to make you code an ant farm manager - 42 Silicon Valley
-
Updated
Oct 2, 2019 - C
An NPM Package built for Developers to get a High-Level API Access to various Data Structures 👨💻 🗄️
npm
linked-list
stack
datastructures
npm-package
priority-queue
data-structures
npm-module
binary-search-tree
npm-scripts
hash-table
npmjs
-
Updated
May 7, 2020 - JavaScript
C++ template containers with optimized memory consumption
-
Updated
Sep 13, 2020 - C++
HASh Table fortran container exploting coarraY
-
Updated
Sep 11, 2020 - Fortran
Minimalist persistent hashtbl OCaml library
-
Updated
Jan 6, 2020 - OCaml
The dumb OCaml key-value store
-
Updated
Jan 20, 2020 - OCaml
Examples of intrusive container templates in C++.
list
queue
tarjan
mergesort
red-black-tree
heap
dijkstra
heapsort
hash-table
misra
disjoint-set
kruskal
tarjan-algorithm
mergesort-algorithm
heapsort-algorithm
dijkstra-algorithm
kruskal-algorithm
list-sort
tree-sort
intrusive-containers
-
Updated
Jan 14, 2019 - C++
Hash table with separate chaining layout
-
Updated
Aug 4, 2020 - C++
Improve this page
Add a description, image, and links to the hash-table topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the hash-table topic, visit your repo's landing page and select "manage topics."
In the current version of FASTER C++, on Linux, we use
libaio
for async IO handling. It is a known issue thatlibaio
is not very efficient. Recently,io_uring
is released with Linux kernel 5.1, which advertises to be a high performance aysnc IO library. It would be useful to try it and see if we can improve disk performance on Linux by replacinglibaio
with it.More details for io_uring