2 unstable releases

0.2.0 Apr 10, 2023
0.1.0 Apr 9, 2023

#2247 in Algorithms

35 downloads per month

Apache-2.0

21KB
412 lines

dynforest

This crate provides a data structure to handle dynamic tree connectivity. Both incremental and decremental operations are supported with amortized O(log n) time complexity.

As the underlying data structure is a Splay tree, this crate works best with the situation where the working set is relatively small.

To represent a node in the forest, one can create a handle via Handle::new. To connect two nodes, one can use Handle::connect. This will return a Connection, which will keep the two nodes connected until it is dropped.


lib.rs:

This crate provides a data structure to handle dynamic tree connectivity. Both incremental and decremental operations are supported with amortized O(log n) time complexity.

As the underlying data structure is a Splay tree, this crate works best with the situation where the working set is relatively small.

To represent a node in the forest, one can create a handle via Handle::new. To connect two nodes, one can use Handle::connect. This will return a Connection, which will keep the two nodes connected until it is dropped.

No runtime deps