elu

Crates.ioelu
lib.rselu
version0.1.0
sourcesrc
created_at2023-03-30 15:37:37.104187
updated_at2023-03-30 15:37:37.104187
descriptionTraits and implementations for EVAL-LINK-UPDATE data structures.
homepage
repositoryhttps://github.com/MrNbaYoh/elu
max_upload_size
id825216
size17,861
(MrNbaYoh)

documentation

https://docs.rs/elu/latest/elu

README

ELU (EVAL-LINK-UPDATE)

This crate provides traits to describe operations on EVAL-LINK-UPDATE data structures (similar to operations defined by Tarjan in "Applications of Path Compression on Balanced Trees.”).
It also provides implementations of basic EVAL-LINK-UPDATE structures such as forest with path compression on evaluation (see [CompressedForest]).

EVAL-LINK-UPDATE Operations

Suppose we have an associative operation ⊕. The three operations made available on forests are:

  • EVAL(n): find the root of the tree that contains the node n, let say r, and compute the product of all values on the path from r to n (i.e value(r) ⊕ ... ⊕ value(n))
  • LINK(n, m): find the root of the tree that contains the node m, let say r, and link it to the node n (i.e r becomes a child of n)
  • UPDATE(n, v): find the root of the tree that contains the node n, let say r, and replace its value by v
Commit count: 3

cargo fmt