search-trees
There are 47 repositories under search-trees topic.
attaswift/BTree
Fast sorted collections for Swift using in-memory B-trees
tinloaf/ygg
An intrusive C++17 implementation of a Red-Black-Tree, a Weight Balanced Tree, a Dynamic Segment Tree and much more!
make-github-pseudonymous-again/js-data-structures
:herb: Data structures for JavaScript
recp/ds
🔗 Common Data Structures and Algorithms
emma-k-alexandra/RTree
An on-disk, Codable R*-Tree for Swift
arunkumar9t2/trie
A Java implementation of the Trie data structure
mkrebser/ConcurrentSortedDictionary
ConcurrentSortedDictionary implementation in (c#, .NET 7) . It is implemented using a concurrent B+Tree
bharath3794/Algorithms-Illuminated---Part-2
This is the implementation of 2nd Part in 3-Part Series of Algorithms Illuminated Book. All Implementations in this repository are written in both Python and Golang. Single IPython Notebook contains all Algorithms given in this Part 2.
emma-k-alexandra/BTree
A Codable, On-Disk B-Tree
functional-data-structure/persistent
:evergreen_tree: Persistent data structures for JavaScript
gvinciguerra/CSS-tree
Single-header C++11 implementation of the Cache Sensitive Search tree (CSS-tree)
rahul1947/Logic-Programming
Logic Programming using Prolog.
seboettg/Forest
Tree data structures for PHP – containing general tree, binary tree, and AVL tree
MattBann/Search-Tree-Traversal
Visualisation for traversing a search tree, made in Godot 4
Mohelm97/search-tree-simulator
A visual simulator for search tree algorithms, demonstrating the search process step by step.
deterministic-arts/DartsCLHashTree
Purely functional data structures
gabi-250/rust-avl-tree
An AVL tree implementation in Rust.
ohmthanap/CS570_DataStructures-Algorithms
Learned Data Structures and Algorithms: Basic Programming Constructs, Data types, Search trees, Hashing, Complexity Analysis, Algorithm design, Graph algorithms, Sort algorithms
w8r/b-tree
Generic B-Tree
bdjilka/dataStructure
course 2 of algoritms and data structure specialization
binary-search-tree/red-black-tree
:christmas_tree: Red-black tree library for JavaScript
Jabalov/Algorithms-And-DS-Implementations
Implementations of a variety of data structures and algorithms, mainly in C/C++.
luiz-linkezio/Tarefas-Algoritmo_e_Estrutura_de_Dados-SI-CIn-UFPE-2023.1
Tarefas para o aprendizado de algoritmos, da cadeira Algoritmo e Estrutura de Dados do curso de Sistemas de Informação (SI) do CIn da UFPE, cadeira cursada por mim em 2023.
make-github-pseudonymous-again/js-bst
:seedling: Binary search tree library in JavaScript
monycky/aed
🌲 graphs, binary-search-tree and others
oberbichler/Cage
A static RTree implementation for Grasshopper
omar-dahrawy/BVG-Navigator
Using greedy and breadth-first search to find shortest path between two U-Bahn stations.
Alexiush/BTrees
B, B*, B+ and B+* trees implementations in C#
anthony7586/Data-Structures
Classical data structures: C++: vector, linked list, stack, queue, binary search tree, and graph representations. Worst-case analysis, amortized analysis, and big-O notation. Object-oriented and recursive implementation of data structures. Self-resizing vectors and self-balancing trees. Empirical performance measurement.
total-order/any
:clown_face: A total order for all JavaScript values.
ysfwrda/Algorithms-and-data-structures
Repository for the lab work of Algorithms and Data Structures Course.
everysoftware/search-trees
Applied algorithms on search trees.
make-github-pseudonymous-again/js-avl-tree
:balance_scale: AVL trees for JavaScript
make-github-pseudonymous-again/js-splay-tree
:zipper_mouth_face: Splay trees for JavaScript
mlennig/walls_game
The game of ‘Walls’ is comprised of an NxN board of squares (like chess, for example) and two players (say A and B), where N is odd and greater than 1. Each game is played twice, one time with player A starting the game and another with player B making the first move. The game has a start state, play rules that determine legal moves and an end state. Once a game ends, there is a certain accounting that decides the game result.