[][src]Module algonium::data_structure

data structures for efficient operations

This module contains these data structures

  • BIT - Binary Index Tree (Fenwick Tree)
  • BITRange - Binary Index Tree (Fenwick Tree) + range add
  • UnionFind - Disjoint-set (Union-find) data structure

Structs

BIT

Binary Indexed Tree (0-indexed)

BITRange

Binary Indexed Tree (range-version) (0-indexed)

UnionFind

Disjoint-set data structure