/typescript-trietree

Primary LanguageTypeScriptMIT LicenseMIT

typescript trie tree implementation

install

npm i @wolfweb/trie-tree

usage

import { Trie } from '@wolfweb/trie-tree'

const trie = new Trie();

trie.insert('hello');
trie.search('hello');
trie.remove('hello')