Skip to content

Instantly share code, notes, and snippets.

@machjo1965
machjo1965 / radix_trie.js
Created November 10, 2016 04:35 — forked from samuelclay/radix_trie.js
A Radix Trie (aka PATRICIA trie) implemented in JavaScript. Play with it at this interactive JS fiddle: http://jsfiddle.net/jCYAw/
var RadixTrie = function(words) {
this.T = {};
this.initialize(words);
};
RadixTrie.prototype = {
initialize: function(words) {
var self = this;
words = words || [];