npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@webkrafters/auto-bst

v1.0.6

Published

auto-bst - Self balancing binary search tree.

Downloads

12

Readme

Auto-BST (Self-balancing Binary Search Tree)

Name: Auto-BST

Install:
npm i -S @webkrafters/auto-bst

Description

Self-balancing binary search tree data structure for typescripters and javascript users.

Tree contents are automatically deduped and sorted according to either the user supplied comparer functions when available or the default ones otherwise.

Automatically rebalances when properties are set to new values.

Usage

import AutoBST from '@webkrafters/auto-bst';

const timedMap = new AutoBST(); // defaults to empty tree with default isValueBefore (<) and isSameValue (Object.is) camparer options

Public Interface

Constructor

constructor(values: Iterable<T>, options?: TreeOptions<T>)

  • values: optional parameter accepts a parcel of data of any iterable type irrespective of its nature - Sorted or unsorted; unique or with duplicates.
  • options: custom node comparison strategies may be supplied through this optional parameter accepting a payload of the TreeOptions<T> type. Espcially, when managing complex values, consider utilizing this payload parameter.
  • TreeOptions<T>.isSameValue?: Criterion<T>
  • TreeOptions<T>.isValueBefore?: Criterion<T>

TreeNode<T> = please see here

Instance Properties

criteria: TreeOptions<T> - writeonly

Sets both isSameValue and isValueBefore propeties simultaneously.

  • omitted properties are ignored.
  • properties set to undefined are replaced with the default matching criteria.
  • set to undefined to reset both isSameValue and isValueBefore properties to their internal default functions.

isDisposing: boolean - readonly

Sets while the tree is in the clean-up process. Clean up process starts when the user invokes the cleanup(...) method.

isSameValue: Criterion<T>

A function to determine if parameter1 is a value equaling the value property of parameter2.

  • Setting this property to undefined or Tree.DEFAULT will reset it to default.

isValueBefore: Criterion<T>

A function to determine if parameter1 is a value whose node should come before parameter2.

  • Setting this property to undefined or Tree.DEFAULT will reset it to default

size: int - readonly

Number of undetached nodes on the tree

values: Iterable<T>

Array<T> values of all undetached nodes in the tree. Accepts any Iterable<T> type.

  • Setting this property to undefined will reset it. Alias: this.clear()

Instance Methods

cleanup(): void

Triggers the immediate disassociation of any longer-living associated objects (such as detached nodes).

Recommended: invoke this method before either deleting your tree instance or setting it to null.

clear(): void

Disassociates all undetached nodes from the tree.

compare(value: T, node: TreeNode<T>): 0 | 1 | -1

Compares certain value to the value of an undetached node in this tree using the current isSameValue and isValueBefore properties.

genTraversal(options?: TraversalOptions): Generator<TreeNode<T>>

Generator method for this tree traversal.

  • TraversalOptions.direction?: TraversalDirection[keyof TraversalDirection];
  • TraversalOptions.maxLength?: int;
  • TraversalOptions.order?: TraversalOrder[keyof TraversalOrder];
  • TraversalOptions.start?: int; // this property may be negative to start -N places from tree.size.
  • TraversalDirection.RIGHT: "LTR";
  • TraversalDirection.LEFT: "RTL";
  • TraversalOrder.IN: "IN_ORDER";
  • TraversalOrder.POST: "POST_ORDER";
  • TraversalOrder.PRE: "PRE_ORDER";

getNodeAt(index: int): TreeNode<T>

Returns the undetached node located at the supplied index using a Left-to-Right In-Order traversal.

Attention: index parameter also accepts a negative integer to obtain the node located -N places from tree.size.

indexOf(value: T, start?: int, end?: int): int

Returns the Left-to-Right In-Order traversal index of an undetached node in the tree whose value is the same as the first argument.

Attention: may provide a ranged search through the start and the end optional arguments.

  • start: optional parameter is assigned 0 by default. When assigned a value exceeding tree.size - 1, method immediately returns -1. When negative, method attempts to resolve it by applying tree.size + start. If still negative, method begins its search from index #0.

  • end: optional parameter is assigned tree.size - 1 by default. When assigned a value exceeding tree.size - 1, method searches to until the end of the tree. When negative, method attempts to resolve it by applying tree.size + end. When the resolved end index is still less than the start index, method searches only the value at start index. Otherwise, method searches up to and including the resolved end index.

insert(value: T): this

Creates and inserts a node constaining the value argument into the tree such that the tree remains balanced.

  • An attempt to insert duplicate values to the tree is a no op.

insertNode(node: TreeNode<T>): this

Re-inserts either a free node into a tree or a detached but associated node back into its tree. Alternate API: node.join(...)

  1. An attempt to insert an undetached node is a no op.
  2. An attempt to insert any node into a tree with which it is not associated is a ReferenceError.

remove(value: T): this

Disassociates from its tree an associated node whose value property is isSameValue as the value parameter.

removeNode(node: TreeNode<T>): this

Disassociates an associated node from its tree. Alternate API: node.free(...)

  • An attempt to remove an unassociated node is a ReferenceError.

rotate(): this

Balances this tree.

  • Rarely ever needed as this tree is self-balancing.
  • It may come in handy for unit test mock purposes.
  • An attempt to perform this op on a balanced tree is a no op.

synchronize(node: TreeNode<T>): this

This method synchronizes changes in the value property of an undetached node with its tree.

  • When a node value property is set to a new value, this method is notified automatically.
  • When a user mutates a node value property, they may use this method to do the synchronization manually.
  1. An attempt to perform this op on an undetached node is a no op.
  2. An attempt to perform this op on an unassociated node is a ReferenceError.

traverse(cb?: VoidFunction, options?: TraversalOptions): void | Array<TreeNode<T>>

Traverses undetached tree nodes.

  • cb: optional parameter accepts a callback to be invoked on every traversed node.signature: (node: TreeNode<T>): void When this argument is in its default undefined state, the method returns an array of the nodes traversed.Otherwise, void is returned.

  • options: optional parameter accepts a TraversalOptions payload object containing traversal direction, order and range. This argument, by default, holds the directive for the traditional IN_ORDER traversal (i.e. a right ward in-order traversal of the entire tree).

Static Properties

DEFAULT: DEFAULT_CONSTANT

Default settings string

Direction: Readonly<TraversalDirection>

Tree traversal direction options.

  • CriterionType.isSameValue: "isSameValue"
  • CriterionType.isValueBefore: "isValueBefore"

INVALID_NODE_MESSAGE: string

Invalid node error message text: when performing tree operations on an invalid node type.

TREE_MISMATCH_MESSAGE: string

Tree mismatch error message text: when performing tree operations on an unassociated node.

  • Transition.COMPLETE: 0;
  • Transition.DETACHING: -1;
  • Transition.DISASSOCIATING: 2;
  • Transition.JOINING: 1;

Order: Readonly<TraversalOrder>

Tree traversal order options.

Static Method

isValid(tree: Tree<T>): boolean

Verifies a valid tree type.


Constructor

constructor(tree: Tree<T>, value?: T, index?: int)

*This is an internal constructor used by the Tree to spin up new nodes as needed.

Nevertheless:

  • tree: parameter accepts a reference to the tree creating this node.
  • value: optional parameter accepts the node initial value.
  • index: optional parameter accepts this node index on the tree (according to the Left-to-Right In-Order positioning)

Instance Properties

children: Array<TreeNode<T>> - readonly

Holds the left and right child nodes respectively

index: int - readonly

Left-to-Right In-Order index positioning of this node on the tree.

This property changes whenever its tree rebalances.

However, if this node is detached from its tree, then this property may become stale.

isDetached: boolean - readonly

Is set if this node is currently associated to but not an accessible part of its tree.

isFree: boolean - readonly

Is set if this node is not associated with any valid tree.

left: TreeNode<T> - readonly

Left child node.

right: TreeNode<T> - readonly

Right child node.

root: TreeNode<T> - readonly

Parent node.

transition: -1 | 0 | 1 | 2 - readonly

Current transitioning mode. This describes which tree transitioning process this node is currently undergoing.

See TransitionType

tree: Tree<T>

A tree instance with which this node is associated.

Updating this property disassociates this node from its current tree and moves it to the new tree property.

The disassociated tree self-rebalances (if an undetached node is being disassociated).

The newly associated tree self-rebalances upon inserting this node into it.

value: T

A value stored and held in this node.

Updating this property (when this node is undetached) triggers rebalancing of its associated tree.

Mutating this property is a no op.

Instance Methods

detach(): TreeNode<T>

Detaches (but not disassociate) this node from its associated tree. This node becomes inaccessible to its tree until reinstasted.

May use tree.insertNode(...) or node.join(...) to reinstate this node to its tree.

free(): TreeNode<T>

Detaches (if not already detached) and disassociates this node from its associated tree.

genAncestors(nGenerations?: number): Generator<TreeNode<T>>

Generates parent nodes up the tree until nGenerations ancestors reached or tree height exhausted.

  • nGenerations: optional parameter accepts the ancestor position in proximity to this TreeNode. Exmaple: this node.root has nGenerations = 1.

genDescendants(nGenerations?: number): Generator<TreeNode<T>>

Generates descendant nodes down the tree until nGenerations descendants reached or tree depth exhausted.

  • nGenerations: optional parameter accepts the descendants sorted in ascending order starting from left to right.

genParentsUntil(ancestorNode?: TreeNode<T>): Generator<TreeNode<T>>

Generates parent nodes up the tree until anscestorNode is reached - including the ancestorNode. Returns empty array if ancestorNode not found in the hierarchy.

getAncestors(nGenerations?: number): Array<TreeNode<T>>

Returns parent nodes up the tree until nGenerations ancestors reached or tree height exhausted.

  • nGenerations: optional parameter accepts the ancestor position in proximity to this TreeNode. Exmaple: this node.root has nGenerations = 1.

getDescendants(nGenerations?: number): Array<TreeNode<T>>

Returns descendant nodes down the tree until nGenerations descendants reached or tree depth exhausted.

  • nGenerations: optional parameter accepts the descendants sorted in ascending order starting from left to right.

getParentsUntil(ancestorNode: TreeNode): Array<TreeNode<T>>

Generates parent nodes up the tree until anscestorNode - including the ancestorNode. Returns empty array if ancestorNode not found in the hierarchy.

join(): TreeNode<T>

Inserts this node (when detached) into its associated tree.

Unsets this node's isDeatched flag.

License

ISC