louds-rs

High performance LOUDS (Level-Order Unary Degree Sequence) library.

Master API Docs | Released API Docs | Benchmark Results | Changelog

Build Status Crates.io Minimum rustc version License: MIT License: Apache 2.0

Quickstart

To use louds-rs, add the following to your Cargo.toml file:

toml [dependencies] louds-rs = "0.1" # NOTE: Replace to latest minor version.

Usage Overview

Say we want to hold the following tree structure in minimum length of bits.

(1) | |---+---+ | | | (2) (3) (4) | | | |---+-----+ | | | | (5) (6) (7) (8) | | | |----+ | | | (9) (10) (11)

This tree has NodeNum (node number of 1-origin, assigned from left node to right & top to bottom) and edges. With LOUDS, this tree is represented as the following LBS (LOUDS Bit String).

NodeNum | 0 (virtual root) | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | LBS | 1 0 | 1 1 1 0 | 1 0 | 0 | 1 1 1 0 | 0 | 0 | 1 0 | 1 1 0 | 0 | 0 | 0 | Child NodeNum | 1 - | 2 3 4 - | 5 - | - | 6 7 8 - | - | - | 9 - | 10 11 - | - | - | - | Index | 0 1 | 2 3 4 5 | 6 7 | 8 | 9 10 11 12| 13| 14| 15 16| 17 18 19| 20| 21 | 22 |

The same tree is represented as follows using index.

<0> | |---+---+ | | | <2> <3> <4> | | | |---+-----+ | | | | <6> <9> <10> <11> | | | |----+ | | | <15> <17> <18>

Then, create this tree structure with Louds and call operations to it.

```rust use louds_rs::{Louds, LoudsIndex, LoudsNodeNum};

// Construct from LBS. let s = "1011101001110001011000_0"; let louds = Louds::from(s);

// LoudsNodeNum <-> LoudsIndex let node8 = LoudsNodeNum(8); let index11 = louds.nodenumtoindex(&node8); asserteq!(louds.indextonode_num(&index11), node8);

// Search for children. asserteq!(louds.parentto_children(&node8), vec!(LoudsIndex(17), LoudsIndex(18)));

// Search for parent. asserteq!(louds.childto_parent(&index11), LoudsNodeNum(4)); ```

Constructors

```rust use louds_rs::Louds;

// Most human-friendly way: Louds::from::<&str>() let louds1 = Louds::from("1011101001110001011000_0");

// Simple way: Louds::from::<&[bool]>() let mut arr = vec![ true, false, true, true, true, false, true, false, false, true, true, true, false, false, false, true, false, true, true, false, false, false, false, ]; let louds2 = Louds::from(&arr[..]); ```

Features

Complexity

When the number of nodes in the tree represented as LOUDS is N:

| Operation | Time-complexity | Space-complexity | |-----------|-----------------|------------------| | Louds::from::<&str>() | O(N) | N + o(N) | | Louds::from::<&[bool]>() | O(N) | N + o(N) | | nodenumtoindex() | _O() | N + o(N) | | indextonodenum() | _O(1) | O(1) | | childtoparent() | O(1) | O(1) | | parenttochildren() | O( max(log N, max num of children a node has) ) | O( max(log N, max num of children a node has) ) |

(node_num_to_index() and child_to_parent() use Fid::select(). index_to_node_num() and parent_to_children() use rank()).

Versions

louds-rs uses semantic versioning.

Since current major version is 0, minor version update might involve breaking public API change (although it is carefully avoided).

Rust Version Supports

louds-rs is continuously tested with these Rust versions in Travis CI:

So it expectedly works with Rust 1.33.0 and any newer versions.

Older versions may also work, but are not tested or guaranteed.

Contributing

Any kind of pull requests are appreciated.

Guidelines

License

MIT OR Apache-2.0