dndtree 0.2.0

DND-Tree dynamic connectivity data structure
1
2
3
4
5
6
7
8
9
10
11
#![deny(missing_docs)]
// #![forbid(unsafe_code)]

//! Implementation of the ID-Tree data structure from:
//! *“Constant-time Connectivity Querying in Dynamic Graphs”* (ACM, 2024).

mod dndtree;
pub use crate::dndtree::DNDTree;

/// Bridge between C++ and Rust
pub mod bridge;