Skip to content

Latest commit

 

History

History
5 lines (4 loc) · 432 Bytes

README.md

File metadata and controls

5 lines (4 loc) · 432 Bytes

Link-Cut Tree implementation in Rust

This repository contains a Rust implementation of the amortized logarithmic link-cut tree data structure as described in this lecture. It currently supports link, cut, and find_root operations; see src/link_cut_tree.rs for the API. Path aggregation (and better documentation) are still to-do items.