Skip to content

Instantly share code, notes, and snippets.

@pebrc
Created September 22, 2013 10:23
Show Gist options
  • Save pebrc/6658682 to your computer and use it in GitHub Desktop.
Save pebrc/6658682 to your computer and use it in GitHub Desktop.
function PrefixTree_6(prefixLength){
this.prefixLength = prefixLength;
this.size = 0;
this.subtrees_0 = {};
this.suffixes = {};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment