JavaScript:实现Trie字典树算法 const TrieNode = function TrieNode (key, parent) { this.key = key this.count =