Skip to content

Instantly share code, notes, and snippets.

@greyscaled
Created August 20, 2018 03:41
Show Gist options
  • Save greyscaled/638fe7a3e79119e42c9b4c81a296db93 to your computer and use it in GitHub Desktop.
Save greyscaled/638fe7a3e79119e42c9b4c81a296db93 to your computer and use it in GitHub Desktop.
const R = 26
function Node (value = null) {
this.value = value
this.next = new Array(R)
}
class Trie {
constructor () {
this.root = new Node()
}
put (key = '', val = null) {
// todo
}
keysThatMatch (pattern) {
// todo
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment