hashtable
Here are 352 public repositories matching this topic...
It took me a while to figure out how to use khash from the built in example. I saw similar complaints on other blog pages so I don't think I am unique. I suggest adding the following as file to the repository as an example and modifying the home page of the repository to link to it. It compiled and ran fine with gcc with the std=c11 flag set.
// khash example for string key int paylThis code:
let map = DashMap::<i32, i32>::new();
map.insert(1, 2);
let a = map.get_mut(&1);
let b = map.get(&1);will deadlock. The shard containing 1 gets write-locked, nothing else can access it. This is reasonable behavior but I think it should be documented.
Perhaps more surprising is that this code:
let map = DashMap::<i32, i32>::new();
for i in 0..100A library of generic intrusive data structures and algorithms in ANSI C
-
Updated
Jan 21, 2018 - C
Um, I've just cloned and built this library and I can see there is a doc directory and that it contains html pages but that these are not installed outside of the source tree. I am intending to use this for a INI config file reader/writer provided by the Extension API on a Raspberry Pi (for a Home Automation Project) that I am SSHing into and I'm not using a GUI so I'd be looking to use `m
See the list here: rust-lang/rust#45273 (comment)
-
Updated
Apr 11, 2020 - HTML
Go datastructures.
-
Updated
Mar 12, 2019 - Go
I think meson might be beneficial as a build system to simplify the build file and allow building on most targets (without having to hardcode paths to homebrew or likewise).
Fast, reliable cuckoo hash table for Node.js.
-
Updated
Sep 9, 2019 - JavaScript
Simple and fast string based key-value database with support for arrays and json
-
Updated
Apr 9, 2020 - C
L4 (Lock-Free on Read) Hashtable is a C++ library that implements hash table with arbitray byte stream keys/values.
-
Updated
Dec 20, 2019 - C++
Diskbased (persistent) hashtable
-
Updated
May 19, 2020 - C
An open addressing linear probing hash table, tuned for delete heavy workloads
-
Updated
Sep 25, 2019 - C++
A Python Embedded Graph Database
-
Updated
Oct 31, 2019 - Python
-
Updated
Jun 28, 2019 - Jupyter Notebook
Coding interview preparation
-
Updated
Oct 31, 2019 - Python
A SIMD optimized fixed-length string class along with an adaptive hash table for fast searching
-
Updated
Apr 6, 2020 - C++
My Daily Algo Practice Journey
-
Updated
May 27, 2020 - Python
solutions using C# for leetcode according to tags of questions, updating everyday. My contact info: guozhennianhua@163.com or my blog: http://blog.csdn.net/daigualu
-
Updated
Aug 4, 2017 - C#
A Log-Structured Hash Table for Fast Key/Value Data
-
Updated
May 21, 2020 - Go
Data structures in detail with java implementations
-
Updated
Oct 2, 2019 - Java
Algorithmic Problems Solutions -- hash table code featured in geeksforgeeks
-
Updated
Sep 21, 2016 - Java
A random collection of reusable Clash designs/examples
-
Updated
May 16, 2020 - Haskell
Code from Problem Solving with Algorithms and Data Structures using Python
-
Updated
Apr 30, 2020 - Python
simple and hopefully useful snippets in modern fortran
-
Updated
Feb 6, 2019 - Fortran
Improve this page
Add a description, image, and links to the hashtable topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the hashtable topic, visit your repo's landing page and select "manage topics."


I'd suggest a better differentiation between Best and Breadth First Search in the Graphs section.
Acronyms BFS and DFS are used all over the place, but "breadth" and "depth" aren't mentioned anywhere, making it hard for a newcomer to understand what is being referred to.