Skip to content

nyxtom/text-tree

Repository files navigation

text-tree

Simple data structure and algorithms for use in tries, suffix trees and the like.

Getting Started

Install the module with: npm install text-tree

var textTree = require('text-tree');
var trie = new textTree.trie();
trie.insert('hello world');
trie.insert('hi');
trie.insert('world');
trie.insert('wonderful');
trie.insert('wicked');
trie.autoComplete('wo'); // ['wonderful', 'world']
// Alternatively if you are using client side javascript
<script type="text/javascript" src="text-tree.min.js"></script>
<script type="text/javascript">
var trie = new textTree.trie();
trie.insert('hello world');
trie.insert('hi');
trie.insert('world');
trie.insert('wonderful');
trie.insert('wicked');
console.log(trie.autoComplete('wo')); // ['wonderful', 'world']
</script>

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using grunt.

License

Copyright (c) 2013 Thomas Holloway
Licensed under the MIT license.

About

Simple data structures and algorithms revolved mostly around tries, suffix trees, suffix arrays and other text mining activities.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published