1.0.3 • Published 4 years ago

fingertree-js v1.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

fingertree-js

This is a Javascript implementation of Finger tree, which can be used to implement other data structures.

Setup

Using npm:

npm install fingertree-js

In your project:

import init, {Monoid, Measured} from 'fingertree-js';

Examples

See repository fingertree-based-js, which implements priorityQueue and sequence.

API

Init

Monoid

This is a abstract class, you can inherit it to creat your own monoid

import { Monoid } from 'fingertree-js';
class SizeMonoid extends Monoid {
    static get mempty() { return 0; } // must be implemented
    static mappend(a, b) { return a + b; } // must be implemented
    static mconcat(list) { return list.reduce(this.mappend, this.mempty); } // no need to be implemented, but can also be overrode
}

Measured

Also a abstract class, it's for something that can be measured.

import { Measured } from 'fingertree-js';
class Character extends Measured {
    constructor(char) {
        super();
        this.char = char; // just for example
    }

    measure() { return 1; } // you must implement this method. For example, a character has size 1
}

init(Monoid)

Get your configured finger tree classes, which will be used in construction and examining;

import init from 'fingertree-js';
const { Empty, Single, FingerTree } = init(SizeMonoid);

Construction

Empty

Returns a new empty tree

let tree = new Empty;

Single

Returns a new tree with one measured element

let tree = new Single(new Character('a'));

tree.prepend(measured)

Add an element to the left end and returns a new tree

let newTree = tree.prepend(new Character('b'));

tree.append(measured)

Add an element to the right end and returns a new tree

let newTree = tree.append(new Character('c'));

FingerTree.concat(leftTree, rightTree)

Concat two trees and return the new one

let tree = FingerTree.concat(leftTree, rightTree);

FingerTree.fromList(measured)

Create a tree from a list consists of the measured

let list = ['a', 'b', 'c'].map(char => new Character(char));
let tree = FingerTree.fromList(list);

Examine

tree.viewl(peek = false)

Returns the left-most element if peek set to true, otherwise an array like [element, treeFromOtherElements]. If not found, returns undefined and [] respectively.

let x = empty.viewl(true); // got undefined
let result = empty.viewl(); // got []
let x = tree.viewl(true); // got the left-most element if tree is not empty
let [x, tree] = tree.viewl(); // x is now left-most element and tree is a new tree from rest elements, can be a empty tree

tree.viewr(peek = false)

Returns the right-most element if peek set to true, otherwise an array like [treeFromOtherElements, element]. If not found, returns undefined and [] respectively.

let x = empty.viewr(true); // got undefined
let result = empty.viewr(); // got []
let x = tree.viewr(true); // got the right-most element if tree is not empty
let [x, tree] = tree.viewr(); // x is now right-most element and tree is a new tree from rest elements, can be a empty tree

tree.measure()

Returns the measured value of the tree

let v = tree.measure(); // got 100, for example

Search

tree.search(predicate)

Search a tree for a point where a predicate changes from False to True. The predicate is a function returns Boolean from two arguments (measureLeft, measureRight).

The tree takes the predicate function and returns an array like [leftTree, target, rightTree] which makes predicate(leftTree.measure(), rightTree.prepend(target).measure()) return False and predicate(leftTree.append(target).measure(), rightTree.measure()) return True. If no such point is found, [] is returned instead. The predicate must be monotonic.

const at = index => (vl, vr) => index < 0 ? vr + 1 <= -index : vl - 1 >= index; // you can ignore vr completely and use vl only if you like
tree.search(at(1)); // find sequence for the 1st elemnt, zero indexed. Got [single, target, empty], for example.
tree.search(at(-1)); // find the last element. Got [tree, target, single], for example.

References

1.0.3

4 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago

0.0.1

5 years ago