#
red-black-tree
Here are 199 public repositories matching this topic...
100+ algorithms & data structures generically implemented in C#.
csharp
avl-tree
algorithms
graph-algorithms
data-structures
red-black-tree
sorting-algorithms
heap
binary-trees
quadtree
pairing-heap
rtree
btrees
splaytrees
fibonacci-heap
treaps
-
Updated
May 8, 2020 - C#
A library of generic intrusive data structures and algorithms in ANSI C
c
linked-list
stack
queue
algorithms
datastructures
generic
hash-functions
collections
red-black-tree
hashtable
c89
ansi-c
iterative-algorithms
intrusive
cdsa
-
Updated
Jan 21, 2018 - C
A collection of classical data structures and algorithms implemented in Typescript with video lectures
typescript
avl-tree
linked-list
stack
queue
binary-search-tree
red-black-tree
binary-heap
binomial-heap
hash-tables
b-tree
fibonacci-heap
algorithms-and-data-structures
-
Updated
Jul 6, 2020 - TypeScript
axefrog
opened
Mar 11, 2017
An intrusive C++17 implementation of a Red-Black-Tree, a Weight Balanced Tree, a Dynamic Segment Tree and much more!
data-structure
cpp14
red-black-tree
interval-tree
segment-tree
search-trees
interval-set
interval-map
zip-tree
weight-balanced-tree
-
Updated
Jun 26, 2020 - C++
BokkyPooBah's Red-Black Binary Search Tree Library
-
Updated
Jan 17, 2020 - Solidity
Lua algorithms library that covers commonly used data structures and algorithms
sorting
lua
algorithms
data-structures
binary-search-tree
red-black-tree
balanced-search-trees
tries
-
Updated
Nov 24, 2017 - Lua
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
Package cs-algorithms provides C# implementation of algorithms for data structures and manipulation, as well as graph and string processing
algorithms
binary-search-tree
red-black-tree
sorting-algorithms
dijkstra
symbol-table
topological-sort
substring-search
max-flow
bellman-ford-algorithm
-
Updated
Nov 24, 2017 - C#
simple and hopefully useful snippets in modern fortran
-
Updated
Feb 6, 2019 - Fortran
Fortune's algorithm for Voronoi diagram generating on the plane. Intended for runtime speed and careful handling of corner cases.
-
Updated
Sep 17, 2019 - C++
Fast AVL Trees & WAVL Trees in Java
java
avl-tree
red-black-tree
skiplist
balanced-binary-search-trees
balanced-search-trees
red-black-trees
wavl-tree
ravl-tree
avl-tree-implementations
-
Updated
Feb 2, 2018 - Java
42 library of basic C functions - queues, lists, memory operations and more 😄
linked-list
queue
strings
string-manipulation
red-black-tree
libft
rbtree
42
memory-manipulation
double-linked-list
-
Updated
Feb 28, 2020 - 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#
A C++ header only interval tree implementation.
-
Updated
Jul 27, 2019 - C++
Fast spatio-temporal system to index events.
redis
red-black-tree
hilbert-curve
redis-module
space-filling-curves
gdelt-events
longitude-and-latitude
spatio-temporal-indexing
-
Updated
Jun 27, 2020 - C
dotnwat
commented
Mar 21, 2018
The key/value pairs for each item in the tree are stored in their own struct entry and shared structurally with other tree nodes. When the actual key/value is small, we don't gain a lot from this sharing. A performance enhancement is to embed the key/value pairs in the tree nodes when they are small enough. This makes sense for numeric types, but maybe others as well.
.Red-Black tree algorithm. Should have know there's already a TreeMap in Java.........
-
Updated
Dec 5, 2017 - Java
Haskell interval collections
-
Updated
Jun 12, 2020 - Haskell
Collection of highly reusable C utilities.
c
utilities
linked-list
helpers
hash
red-black-tree
utility-library
mit-license
command-line-parser
helpers-library
variant-data
utility-functions
-
Updated
Jun 7, 2020 - C
Orderbook implementation in go with red black tree
-
Updated
Sep 4, 2018 - Go
A red-black self-balancing interval tree
segment
cplusplus
cpp
cpp11
red-black-tree
balanced-tree
interval-tree
segments
interval
self-balancing-trees
segmenttree
intervals
redblacktree
segment-tree
balanced-trees
redblacktrees
cplusplus-11
red-black-trees
intervaltree
-
Updated
Mar 11, 2020 - C++
An overview of my work at 42 Silicon Valley's Piscine on C, including a topic overview and an explanation of the grading system.
bash
unix
linked-list
functional-programming
recursion
binary-search-tree
red-black-tree
sorting-algorithms
dynamic-programming
binary-trees
bash-script
recursive-backtracking-algorithm
pointers-and-arrays
header-files
42-school
42-silicon-valley
-
Updated
Aug 5, 2019 - C
Tree data structures implemented in Rust
functional-programming
data-structures
binary-search-tree
red-black-tree
merkle-tree
pairing-heap
leftist-heap
splay-tree
-
Updated
May 29, 2019 - Rust
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++
Cython interface to red-black trees implemented in C++
-
Updated
Nov 25, 2019 - Python
javascript data structure libarary
-
Updated
Mar 13, 2020 - JavaScript
Implementation of data structures in GO.
go
golang
avl-tree
linked-list
stack
queue
algorithms
datastructures
structures
binary-search-tree
red-black-tree
balanced-tree
go-packages
algorithm-library
hashtable
trees
cartesian-tree
algorithms-and-data-structures
gostructures
godatastructures
-
Updated
Apr 6, 2019 - Go
c data structure library
c
data
avl-tree
linked-list
structure
data-structures
binary-search-tree
red-black-tree
tree-structure
c-language
-
Updated
Jun 28, 2020 - C
Improve this page
Add a description, image, and links to the red-black-tree topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the red-black-tree topic, visit your repo's landing page and select "manage topics."
A pleasure that LinkedHashMap has been added.
While I have a different point about the iterative sequence. The sequence should order by the key last time put in instead of the first time put in.
This situation is caused by the func named LinkedHashMap.Put: