5.5.0 • Published 6 years ago

node-ternary-search-trie v5.5.0

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

A simple class for ternary search trie implemented in JavaScript.

Build Status NPM version

It is unstable and not for production use. ;)

You can install it via npm install node-ternary-search-trie, or just include the script lib/trie.js in your web pages.

var Trie = Trie || require('node-ternary-search-trie');

var trie = new Trie();

Public methods (with simple Unicode support):

  • set(key, value) -> this

    Insert one key-value pair into the trie. This will overwrite the existed key-value pair. value should not be null or undefined.

  • get(key, toSplay = false) -> value:

    Fetch the stored value of the given key.

    get and set methods may be greatly affected after each splaying operation. Splay with caution.

  • del(key) -> this

    Delete the key-value pair for the given key.

  • size() -> size

    Return the total number of nodes in the trie.

  • keys() -> [keys...]

    Sort and return all keys stored in the trie.

  • keysWithPrefix(prefix) -> [keys...]

    Sort and return all keys started with the given prefix.

  • keysWithCommonPrefix(key) -> [keys...]

    Sort and return all keys that are prefixes of the given key.

  • keysWithinHammingDistance(key, distance) -> [keys...]

    Sort and return all keys within a Hamming distance of the given key.

  • keysWithinLevenshteinDistance(key, distance) -> [keys...]

    Sort and return all keys within a Levenshtein distance of the given key.

  • keysWithinDamerauLevenshteinDistance(key, distance) -> [keys...]

    Sort and return all keys within a Damerau-Levenshtein distance of the given key.

  • searchWithPrefix(prefix, callback: (key, value) -> void) -> this

    Just like keysWithPrefix.

  • searchWithCommonPrefix(key, callback: (key, value) -> void) -> this

    Just like keysWithCommonPrefix.

  • searchWithinHammingDistance(key, distance, callback: (key, value, distance) -> void) -> this

    Just like keysWithinHammingDistance.

  • searchWithinLevenshteinDistance(key, distance, callback: (key, value, distance) -> void) -> this

    Just like keysWithinLevenshteinDistance.

  • searchWithinDamerauLevenshteinDistance(key, distance, callback: (key, value, distance) -> void) -> this

    Just like keysWithinDamerauLevenshteinDistance.

  • traverse(callback: (key, value) -> void) -> this

    Traverse in in-order. (sorted)

  • traversal() -> iterator

    Return an iterator for in-order traversal. iterator.next() will return {value: undefined | {key, value}, done: Boolean}.

5.5.0

6 years ago

5.4.5

6 years ago

5.4.4

6 years ago

5.4.3

7 years ago

5.4.2

10 years ago

5.4.1

10 years ago

5.4.0

10 years ago

5.3.0

10 years ago

5.2.0

10 years ago

5.1.0

10 years ago

5.0.0

10 years ago

4.1.2

10 years ago

4.1.1

10 years ago

4.1.0

10 years ago

4.0.0

10 years ago

3.0.0

10 years ago

2.0.0

10 years ago

1.9.0

10 years ago

1.8.0

10 years ago

1.7.0

10 years ago

1.6.0

10 years ago

1.5.0

10 years ago

1.4.0

10 years ago

1.3.0

10 years ago

1.2.1

10 years ago

1.2.0

10 years ago

1.1.2

10 years ago

1.1.1

10 years ago

1.1.0

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago