An open API service indexing awesome lists of open source software.

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

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/