@@ -102,13 +102,13 @@ BF 算法的思想可以用一句话来概括:在主串中检查起始位置
102
102
103
103
| 题号 | 标题 | 题解 | 标签 | 难度 |
104
104
| :------: | :------ | :------: | :------ | :------ |
105
- | 0208 | [ 实现 Trie (前缀树)] ( https://leetcode.com/problems/implement-trie-prefix-tree/ ) | | [ ` 设计 ` ] ( /leetcode/outline/tag/design.md ) [ ` 字典树 ` ] ( /leetcode/outline/tag/trie.md ) [ ` 哈希表 ` ] ( /leetcode/outline/tag/hash-table.md ) ` 1+ ` | <font color =#ffb800 >Medium</font > |
105
+ | 0208 | [ 实现 Trie (前缀树)] ( https://leetcode.com/problems/implement-trie-prefix-tree/ ) | [ JS ] ( https://2xiao.github.io/leetcode-js/leetcode/problem/0208 ) | [ ` 设计 ` ] ( /leetcode/outline/tag/design.md ) [ ` 字典树 ` ] ( /leetcode/outline/tag/trie.md ) [ ` 哈希表 ` ] ( /leetcode/outline/tag/hash-table.md ) ` 1+ ` | <font color =#ffb800 >Medium</font > |
106
106
| 0677 | [ 键值映射] ( https://leetcode.com/problems/map-sum-pairs/ ) | | [ ` 设计 ` ] ( /leetcode/outline/tag/design.md ) [ ` 字典树 ` ] ( /leetcode/outline/tag/trie.md ) [ ` 哈希表 ` ] ( /leetcode/outline/tag/hash-table.md ) ` 1+ ` | <font color =#ffb800 >Medium</font > |
107
107
| 0648 | [ 单词替换] ( https://leetcode.com/problems/replace-words/ ) | | [ ` 字典树 ` ] ( /leetcode/outline/tag/trie.md ) [ ` 数组 ` ] ( /leetcode/outline/tag/array.md ) [ ` 哈希表 ` ] ( /leetcode/outline/tag/hash-table.md ) ` 1+ ` | <font color =#ffb800 >Medium</font > |
108
108
| 0642 | [ 设计搜索自动补全系统] ( https://leetcode.com/problems/design-search-autocomplete-system/ ) | | [ ` 设计 ` ] ( /leetcode/outline/tag/design.md ) [ ` 字典树 ` ] ( /leetcode/outline/tag/trie.md ) [ ` 字符串 ` ] ( /leetcode/outline/tag/string.md ) ` 1+ ` | <font color =#ff334b >Hard</font > |
109
- | 0211 | [ 添加与搜索单词 - 数据结构设计] ( https://leetcode.com/problems/design-add-and-search-words-data-structure/ ) | | [ ` 深度优先搜索 ` ] ( /leetcode/outline/tag/depth-first-search.md ) [ ` 设计 ` ] ( /leetcode/outline/tag/design.md ) [ ` 字典树 ` ] ( /leetcode/outline/tag/trie.md ) ` 1+ ` | <font color =#ffb800 >Medium</font > |
109
+ | 0211 | [ 添加与搜索单词 - 数据结构设计] ( https://leetcode.com/problems/design-add-and-search-words-data-structure/ ) | [ JS ] ( https://2xiao.github.io/leetcode-js/leetcode/problem/0211 ) | [ ` 深度优先搜索 ` ] ( /leetcode/outline/tag/depth-first-search.md ) [ ` 设计 ` ] ( /leetcode/outline/tag/design.md ) [ ` 字典树 ` ] ( /leetcode/outline/tag/trie.md ) ` 1+ ` | <font color =#ffb800 >Medium</font > |
110
110
| 0421 | [ 数组中两个数的最大异或值] ( https://leetcode.com/problems/maximum-xor-of-two-numbers-in-an-array/ ) | | [ ` 位运算 ` ] ( /leetcode/outline/tag/bit-manipulation.md ) [ ` 字典树 ` ] ( /leetcode/outline/tag/trie.md ) [ ` 数组 ` ] ( /leetcode/outline/tag/array.md ) ` 1+ ` | <font color =#ffb800 >Medium</font > |
111
- | 0212 | [ 单词搜索 II] ( https://leetcode.com/problems/word-search-ii/ ) | | [ ` 字典树 ` ] ( /leetcode/outline/tag/trie.md ) [ ` 数组 ` ] ( /leetcode/outline/tag/array.md ) [ ` 字符串 ` ] ( /leetcode/outline/tag/string.md ) ` 2+ ` | <font color =#ff334b >Hard</font > |
111
+ | 0212 | [ 单词搜索 II] ( https://leetcode.com/problems/word-search-ii/ ) | [ JS ] ( https://2xiao.github.io/leetcode-js/leetcode/problem/0212 ) | [ ` 字典树 ` ] ( /leetcode/outline/tag/trie.md ) [ ` 数组 ` ] ( /leetcode/outline/tag/array.md ) [ ` 字符串 ` ] ( /leetcode/outline/tag/string.md ) ` 2+ ` | <font color =#ff334b >Hard</font > |
112
112
| 0425 | [ 单词方块] ( https://leetcode.com/problems/word-squares/ ) | | [ ` 字典树 ` ] ( /leetcode/outline/tag/trie.md ) [ ` 数组 ` ] ( /leetcode/outline/tag/array.md ) [ ` 字符串 ` ] ( /leetcode/outline/tag/string.md ) ` 1+ ` | <font color =#ff334b >Hard</font > |
113
113
| 0336 | [ 回文对] ( https://leetcode.com/problems/palindrome-pairs/ ) | | [ ` 字典树 ` ] ( /leetcode/outline/tag/trie.md ) [ ` 数组 ` ] ( /leetcode/outline/tag/array.md ) [ ` 哈希表 ` ] ( /leetcode/outline/tag/hash-table.md ) ` 1+ ` | <font color =#ff334b >Hard</font > |
114
114
| 1023 | [ 驼峰式匹配] ( https://leetcode.com/problems/camelcase-matching/ ) | | [ ` 字典树 ` ] ( /leetcode/outline/tag/trie.md ) [ ` 双指针 ` ] ( /leetcode/outline/tag/two-pointers.md ) [ ` 字符串 ` ] ( /leetcode/outline/tag/string.md ) ` 1+ ` | <font color =#ffb800 >Medium</font > |
0 commit comments