Created
August 20, 2018 03:41
-
-
Save greyscaled/638fe7a3e79119e42c9b4c81a296db93 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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