Skip to content

Commit 37fbba5

Browse files
committed
add 127 208 211 212
1 parent dbd9bbb commit 37fbba5

29 files changed

+675
-320
lines changed

assets/output/0127.md

Lines changed: 0 additions & 63 deletions
This file was deleted.

assets/output/0208.md

Lines changed: 0 additions & 74 deletions
This file was deleted.

assets/output/0211.md

Lines changed: 0 additions & 71 deletions
This file was deleted.

assets/output/0212.md

Lines changed: 0 additions & 57 deletions
This file was deleted.

src/.vuepress/sidebar.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ export default sidebar({
167167
"0123",
168168
"0124",
169169
"0125",
170+
"0127",
170171
"0128",
171172
"0129",
172173
"0130",
@@ -215,8 +216,11 @@ export default sidebar({
215216
"0205",
216217
"0206",
217218
"0207",
219+
"0208",
218220
"0209",
219221
"0210",
222+
"0211",
223+
"0212",
220224
"0215",
221225
"0216",
222226
"0217",

src/leetcode/ds/string.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,13 @@ BF 算法的思想可以用一句话来概括:在主串中检查起始位置
102102

103103
| 题号 | 标题 | 题解 | 标签 | 难度 |
104104
| :------: | :------ | :------: | :------ | :------ |
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> |
106106
| 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> |
107107
| 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> |
108108
| 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> |
110110
| 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> |
112112
| 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> |
113113
| 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> |
114114
| 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> |

src/leetcode/outline/plan/README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
11
# 1.4 学习计划
22

33
<html>
4-
<div class="plan-box">
4+
<div class="plan-box box1">
55
<a href="./top_150_list.html">
66
<img class="plan" src="../../../../assets/image/plan-2.png" alt="top150"/>
77
</a>
88
<a href="./top_200_list.html">
99
<img class="plan" src="../../../../assets/image/plan-1.png" alt="top200"/>
1010
</a>
1111
</div>
12-
<div class="plan-box">
12+
<div class="plan-box box2">
1313
<a href="./top_300_list.html">
1414
<img class="plan" src="../../../../assets/image/plan-5.png" alt="top_300"/>
1515
</a>
1616
<a href="./company_list.html">
1717
<img class="plan" src="../../../../assets/image/plan-6.png" alt="company"/>
1818
</a>
1919
</div>
20-
<div class="plan-box">
20+
<div class="plan-box box3">
2121
<a href="./offer_list.html">
2222
<img class="plan" src="../../../../assets/image/plan-7.png" alt="offer"/>
2323
</a>
2424
<a href="./offer2_list.html">
2525
<img class="plan" src="../../../../assets/image/plan-8.png" alt="offer2"/>
2626
</a>
2727
</div>
28-
<div class="plan-box">
28+
<div class="plan-box box4">
2929
<a href="./codetop_list.html">
3030
<img class="plan" src="../../../../assets/image/plan-3.png" alt="codetop"/>
3131
</a>
@@ -42,12 +42,13 @@
4242
justify-content: space-evenly;
4343
}
4444
.plan {
45-
margin: 10px 0;
45+
margin: 10px 15px;
4646
border-radius: 5px;
4747
height: 9rem;
4848
}
4949
.plan:hover {
5050
box-shadow: 0 2px 12px #f0f1f2;
51+
zoom: 1.03;
5152
}
5253
</style>
5354
</html>

src/leetcode/outline/plan/codetop_list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ headerDepth: 0
159159
| 0328 | [奇偶链表](https://leetcode.com/problems/odd-even-linked-list/) | [JS](https://2xiao.github.io/leetcode-js/leetcode/problem/0328) | [`链表`](/leetcode/outline/tag/linked-list.md) | <font color=#ffb800>Medium</font> | 28 |
160160
| 0091 | [解码方法](https://leetcode.com/problems/decode-ways/) | | [`字符串`](/leetcode/outline/tag/string.md) [`动态规划`](/leetcode/outline/tag/dynamic-programming.md) | <font color=#ffb800>Medium</font> | 28 |
161161
| 0329 | [矩阵中的最长递增路径](https://leetcode.com/problems/longest-increasing-path-in-a-matrix/) | | [`深度优先搜索`](/leetcode/outline/tag/depth-first-search.md) [`广度优先搜索`](/leetcode/outline/tag/breadth-first-search.md) [``](/leetcode/outline/tag/graph.md) `5+` | <font color=#ff334b>Hard</font> | 28 |
162-
| 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> | 27 |
162+
| 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> | 27 |
163163
| 0009 | [回文数](https://leetcode.com/problems/palindrome-number/) | [JS](https://2xiao.github.io/leetcode-js/leetcode/problem/0009) | [`数学`](/leetcode/outline/tag/mathematics.md) | <font color=#15bd66>Easy</font> | 27 |
164164
| 0010 | [正则表达式匹配](https://leetcode.com/problems/regular-expression-matching/) | [JS](https://2xiao.github.io/leetcode-js/leetcode/problem/0010) | [`递归`](/leetcode/outline/tag/recursion.md) [`字符串`](/leetcode/outline/tag/string.md) [`动态规划`](/leetcode/outline/tag/dynamic-programming.md) | <font color=#ff334b>Hard</font> | 26 |
165165
| 0295 | [数据流的中位数](https://leetcode.com/problems/find-median-from-data-stream/) | | [`设计`](/leetcode/outline/tag/design.md) [`双指针`](/leetcode/outline/tag/two-pointers.md) [`数据流`](/leetcode/outline/tag/data-streams.md) `2+` | <font color=#ff334b>Hard</font> | 26 |

0 commit comments

Comments
 (0)