leetcode 1023. Camelcase Matching - 司徒正美

【摘要】使用前缀树, 多个字符串匹配一个模式 javascript function Node() { this.children = {} } class Trie { constructor() { this.root = new Node() } insert(word) { var node = t 阅读全文

文章来源:

Author:司徒正美
link:http://www.cnblogs.com/rubylouvre/p/12122516.html