Socket
Book a DemoInstallSign in
Socket

level-ancestor

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

level-ancestor

Finds the kth ancestor of a node in a JSON tree

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

level-ancestor

Preprocesses a tree encoded as a JSON object so that level ancestor queries can be answered in O(1) time. Takes O(n log(n)) space and preprocessing time.

Example

var preprocessTree = require("level-ancestor")

//Construct some random tree object
var tree = {
  x: {
    y: {
      z: {
        foo: []
      }
    }
  }
}

//Preprocess and build data structure
var ancestor = preprocessTree(tree)

//Now we can answer ancestor predicates in constant time!
var assert = require("assert")

assert.ok(ancestor(tree.x.y.z.foo, 3) === tree.x)

Install

npm install level-ancestor

API

var ancestor = require("level-ancestor")(tree[,childrenOf])

Creates an ancestor query data structure for the given JSON tree

  • tree is the root of a tree-like JSON object

  • childrenOf(node) is an optional function which returns an array of children of node

    • node is the subtree node

    childrenOf should return an array of all possible children of node

Returns A function ancestor for answering ancestor queries on tree

ancestor(node, k)

Finds the kth ancestor of node in the tree. For example, ancestor(node,1) is the parent of node, ancestor(node,2) is the grand parent, and so on.

  • node is a node in the tree
  • k is the ancestor to query

Returns The kth ancestor of node

ancestor.rebuild()

Rebuilds the data structure on tree. You must call this if the tree changes.

Credits

(c) 2014 Mikola Lysenko. MIT License

Keywords

level

FAQs

Package last updated on 01 May 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts