https://github.com/mikong/mori
Tree data structures implemented in Rust
https://github.com/mikong/mori
binary-search-tree data-structures functional-programming leftist-heap merkle-tree pairing-heap red-black-tree splay-tree
Last synced: 5 months ago
JSON representation
Tree data structures implemented in Rust
- Host: GitHub
- URL: https://github.com/mikong/mori
- Owner: mikong
- License: mit
- Created: 2019-03-22T08:15:19.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-05-29T15:59:36.000Z (over 6 years ago)
- Last Synced: 2025-04-05T15:22:54.739Z (6 months ago)
- Topics: binary-search-tree, data-structures, functional-programming, leftist-heap, merkle-tree, pairing-heap, red-black-tree, splay-tree
- Language: Rust
- Size: 125 KB
- Stars: 10
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Mori (森)
A collection of common tree data structures implemented in Rust.
### [Binary Search Tree][bst]
### [Left-Leaning Red-Black Tree][rbt]
### [Leftist Heap][lh]
### [Functional Red-Black Tree][f-rbt]
### [Splay Heap][sh]
### [Pairing Heap][ph]
### [Merkle Tree](/merkle_tree/)
[bst]: binary_search_tree/
[rbt]: red_black_tree/
[lh]: leftist_heap/
[f-rbt]: functional_rbt/
[sh]: splay_heap/
[ph]: pairing_heap/