pub struct UnionFind { /* private fields */ }
Expand description
union-find。
Complexity
演算 | 時間計算量 |
---|---|
new | |
unite | amortized |
repr | amortized |
equiv | amortized |
count | amortized |
subset |
より tight には、 要素 クエリのとき、 時間となる。 ただし、 は次のように定義される。 ここで、 とし、, () である。 より直感的には、 が 以下になる最小の が である。
Complexity analysis
参考文献ふたつめの PDF の概略を書く。todo!()
これらより、 が言える。
Note: として である。
Examples
use nekolib::traits::DisjointSet;
use nekolib::ds::UnionFind;
let mut uf = UnionFind::new(4);
assert!(!uf.equiv(0, 2));
uf.unite(0, 1);
uf.unite(1, 2);
assert!(uf.equiv(0, 2));
assert!(!uf.equiv(0, 3));
assert_eq!(uf.count(0), 3);
References
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for UnionFind
impl Send for UnionFind
impl !Sync for UnionFind
impl Unpin for UnionFind
impl UnwindSafe for UnionFind
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more