1.0.1 • Published 5 years ago

simple-trie-js v1.0.1

Weekly downloads
1
License
ISC
Repository
-
Last release
5 years ago

Usage

let Trie = require("simple-trie-js");

let trie = new Trie();

trie.add_word("hello");
trie.add_word("world");

console.log(trie.search_word("hello") ? "Found!" : "Not Found!");
console.log(trie.search_word("hell") ? "Found!" : "Not Found!");

trie.delete_word("hello");
console.log(trie.search_word("hello") ? "Found!" : "Not Found!");