|
81 | 81 |
|
82 | 82 | | 题目 | 难度 | 掌握度 | |
83 | 83 | | ------------------------------------------------------------------------------ | ---- | ------ | |
84 | | -| [206. 反转链表](https://leetcode.cn/problems/reverse-linked-list/) | 💚 | ✔️ | |
85 | | -| [92. 反转链表 II](https://leetcode.cn/problems/reverse-linked-list-ii/) | 💛 | ❗ | |
86 | | -| [25. K 个一组翻转链表](https://leetcode.cn/problems/reverse-nodes-in-k-group/) | ❤️ | ❗ | |
| 84 | +| [61. 旋转链表](https://leetcode.cn/problems/rotate-list/) | 💛 | ✔️ | |
| 85 | +| [206. 反转链表](https://leetcode.cn/problems/reverse-linked-list/) | 💚 | ✔️ | |
| 86 | +| [92. 反转链表 II](https://leetcode.cn/problems/reverse-linked-list-ii/) | 💛 | ❗ | |
| 87 | +| [25. K 个一组翻转链表](https://leetcode.cn/problems/reverse-nodes-in-k-group/) | ❤️ | ❗ | |
87 | 88 |
|
88 | 89 | #### 回文链表 |
89 | 90 |
|
|
95 | 96 |
|
96 | 97 | #### 双指针技巧 |
97 | 98 |
|
98 | | -| 题目 | 掌握度 | |
99 | | -| ------------------------------------------------------------------------------------------------------ | ------ | --- | |
100 | | -| [26. 删除有序数组中的重复项](https://leetcode.cn/problems/remove-duplicates-from-sorted-array/) | ✔️ | |
101 | | -| [27. 移除元素](https://leetcode.cn/problems/remove-element/) | ✔️ | |
102 | | -| [283. 移动零](https://leetcode.cn/problems/move-zeroes/) | ✔️ | |
103 | | -| [704. 二分查找](https://leetcode.cn/problems/binary-search/) | ✔️ | |
104 | | -| [1. 两数之和](https://leetcode.cn/problems/two-sum/) | ✔️ | |
105 | | -| [167. 两数之和 II - 输入有序数组](https://leetcode.cn/problems/two-sum-ii-input-array-is-sorted/) | ✔️ | |
106 | | -| [LCR 179. 查找总价格为目标值的两个商品](https://leetcode.cn/problems/he-wei-sde-liang-ge-shu-zi-lcof/) | ✔️ | |
107 | | -| [LCR 006. 两数之和 II - 输入有序数组](https://leetcode.cn/problems/kLl5u1/) | ✔️ | |
108 | | -| [344. 反转字符串](https://leetcode.cn/problems/reverse-string/) | ✔️ | |
109 | | -| [5. 最长回文子串](https://leetcode.cn/problems/longest-palindromic-substring/) | ❌ | |
110 | | -| [378. 有序矩阵中第 K 小的元素](https://leetcode.cn/problems/kth-smallest-element-in-a-sorted-matrix/) | 💛 | ❌ | |
111 | | -| [373. 查找和最小的 K 对数字](https://leetcode.cn/problems/find-k-pairs-with-smallest-sums/) | 💛 | ❌ | |
112 | | - |
113 | | -#### 数组双指针经典习题 |
114 | | - |
115 | | -| 题目 | 掌握度 | |
116 | | -| ----------------------------------------------------------------------------------------------------- | ------ | |
117 | | -| [80. 删除有序数组中的重复项 II](https://leetcode.cn/problems/remove-duplicates-from-sorted-array-ii/) | ✔️ | |
118 | | -| [125. 验证回文串](https://leetcode.cn/problems/valid-palindrome/) | ✔️ | |
119 | | -| [75. 颜色分类](https://leetcode.cn/problems/sort-colors/) | ✔️ | |
120 | | -| [88. 合并两个有序数组](https://leetcode.cn/problems/merge-sorted-array/) | ❗ | |
121 | | -| [977. 有序数组的平方](https://leetcode.cn/problems/squares-of-a-sorted-array/) | ✔️ | |
122 | | -| [1329. 将矩阵按对角线排序](https://leetcode.cn/problems/sort-the-matrix-diagonally/) | ❗ | |
123 | | -| [1260. 二维网格迁移](https://leetcode.cn/problems/shift-2d-grid/) | ❌ | |
124 | | -| [867. 转置矩阵](https://leetcode.cn/problems/transpose-matrix/) | ✔️ | |
125 | | -| [14. 最长公共前缀](https://leetcode.cn/problems/longest-common-prefix/) | ✔️ | |
126 | | - |
127 | | -#### 二维数组的花式遍历技巧 |
128 | | - |
129 | | -| 题目 | 掌握度 | |
130 | | -| ----------------------------------------------------------------- | ------ | |
131 | | -| [48. 旋转图像](https://leetcode.cn/problems/rotate-image/) | ❌ | |
132 | | -| [54. 螺旋矩阵](https://leetcode.cn/problems/spiral-matrix/) | ❌ | |
133 | | -| [59. 螺旋矩阵 II](https://leetcode.cn/problems/spiral-matrix-ii/) | ❌ | |
| 99 | +| 题目 | 难度 | 掌握度 | |
| 100 | +| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---- | ------ | |
| 101 | +| [27. 移除元素](https://leetcode.cn/problems/remove-element/) | 💚 | ✔️ | |
| 102 | +| [283. 移动零](https://leetcode.cn/problems/move-zeroes/) | 💚 | ✔️ | |
| 103 | +| [LCR 179. 查找总价格为目标值的两个商品](https://leetcode.cn/problems/he-wei-sde-liang-ge-shu-zi-lcof/) | 💚 | ✔️ | |
| 104 | +| [1. 两数之和](https://leetcode.cn/problems/two-sum/) | 💚 | ✔️ | |
| 105 | +| [167. 两数之和 II - 输入有序数组](https://leetcode.cn/problems/two-sum-ii-input-array-is-sorted/)<br/>[LCR 006. 两数之和 II - 输入有序数组](https://leetcode.cn/problems/kLl5u1/) | 💛 | ✔️ | |
| 106 | +| [26. 删除有序数组中的重复项](https://leetcode.cn/problems/remove-duplicates-from-sorted-array/) | 💚 | ✔️ | |
| 107 | +| [80. 删除有序数组中的重复项 II](https://leetcode.cn/problems/remove-duplicates-from-sorted-array-ii/) | 💛 | ✔️ | |
| 108 | +| [344. 反转字符串](https://leetcode.cn/problems/reverse-string/) | 💚 | ✔️ | |
| 109 | +| [125. 验证回文串](https://leetcode.cn/problems/valid-palindrome/) | 💚 | ✔️ | |
| 110 | +| [5. 最长回文子串](https://leetcode.cn/problems/longest-palindromic-substring/) | 💛 | ❗ | |
| 111 | +| [75. 颜色分类](https://leetcode.cn/problems/sort-colors/) | 💛 | ✔️ | |
| 112 | +| [88. 合并两个有序数组](https://leetcode.cn/problems/merge-sorted-array/) | 💚 | ❗ | |
| 113 | +| [977. 有序数组的平方](https://leetcode.cn/problems/squares-of-a-sorted-array/) | 💚 | ✔️ | |
| 114 | +| [1329. 将矩阵按对角线排序](https://leetcode.cn/problems/sort-the-matrix-diagonally/) | 💛 | ❗ | |
| 115 | +| [1260. 二维网格迁移](https://leetcode.cn/problems/shift-2d-grid/) | 💚 | ❗ | |
| 116 | +| [867. 转置矩阵](https://leetcode.cn/problems/transpose-matrix/) | 💚 | ✔️ | |
| 117 | +| [14. 最长公共前缀](https://leetcode.cn/problems/longest-common-prefix/) | 💚 | ✔️ | |
| 118 | +| [378. 有序矩阵中第 K 小的元素](https://leetcode.cn/problems/kth-smallest-element-in-a-sorted-matrix/) | 💛 | | |
| 119 | +| [373. 查找和最小的 K 对数字](https://leetcode.cn/problems/find-k-pairs-with-smallest-sums/) | 💛 | | |
| 120 | + |
| 121 | +#### 二维数组遍历 |
| 122 | + |
| 123 | +| 题目 | 难度 | 掌握度 | |
| 124 | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ---- | ------ | |
| 125 | +| [151. 反转字符串中的单词](https://leetcode.cn/problems/reverse-words-in-a-string/) | 💛 | ❌ | |
| 126 | +| [48. 旋转图像](https://leetcode.cn/problems/rotate-image/) | 💛 | ❗ | |
| 127 | +| [54. 螺旋矩阵](https://leetcode.cn/problems/spiral-matrix/)<br/>[LCR 146. 螺旋遍历二维数组](https://leetcode.cn/problems/shun-shi-zhen-da-yin-ju-zhen-lcof/) | 💛 | ❌ | |
| 128 | +| [59. 螺旋矩阵 II](https://leetcode.cn/problems/spiral-matrix-ii/) | 💛 | ❗ | |
134 | 129 |
|
135 | 130 | #### 滑动窗口算法 |
136 | 131 |
|
137 | | -| 题目 | 掌握度 | |
138 | | -| -------------------------------------------------------------------------------------------------------------------------- | ------ | |
139 | | -| [3. 无重复字符的最长子串](https://leetcode.cn/problems/longest-substring-without-repeating-characters/) | ✔️ | |
140 | | -| [438. 找到字符串中所有字母异位词](https://leetcode.cn/problems/find-all-anagrams-in-a-string/) | ❗ | |
141 | | -| [567. 字符串的排列](https://leetcode.cn/problems/permutation-in-string/) | ❗ | |
142 | | -| [76. 最小覆盖子串](https://leetcode.cn/problems/minimum-window-substring/) | ❌ | |
143 | | -| [1658. 将 x 减到 0 的最小操作数](https://leetcode.cn/problems/minimum-operations-to-reduce-x-to-zero/) | ❌ | |
144 | | -| [713. 乘积小于 K 的子数组](https://leetcode.cn/problems/subarray-product-less-than-k/) | ❌ | |
145 | | -| [1004. 最大连续 1 的个数 III](https://leetcode.cn/problems/max-consecutive-ones-iii/) | ✔️ | |
146 | | -| [424. 替换后的最长重复字符](https://leetcode.cn/problems/longest-repeating-character-replacement/) | ❗ | |
147 | | -| [219. 存在重复元素 II](https://leetcode.cn/problems/contains-duplicate-ii/) | ❗ | |
148 | | -| [220. 存在重复元素 III](https://leetcode.cn/problems/contains-duplicate-iii/) | ❌ | |
149 | | -| [209. 长度最小的子数组](https://leetcode.cn/problems/minimum-size-subarray-sum/) | ❌ | |
150 | | -| [395. 至少有 K 个重复字符的最长子串](https://leetcode.cn/problems/longest-substring-with-at-least-k-repeating-characters/) | ❌ | |
| 132 | +| 题目 | 难度 | 掌握度 | |
| 133 | +| -------------------------------------------------------------------------------------------------------------------------- | ------ | ------ | |
| 134 | +| [3. 无重复字符的最长子串](https://leetcode.cn/problems/longest-substring-without-repeating-characters/) | | ❗ | |
| 135 | +| [438. 找到字符串中所有字母异位词](https://leetcode.cn/problems/find-all-anagrams-in-a-string/) | | ❗ | |
| 136 | +| [567. 字符串的排列](https://leetcode.cn/problems/permutation-in-string/) | | ❗ | |
| 137 | +| [76. 最小覆盖子串](https://leetcode.cn/problems/minimum-window-substring/) | | ❌ | |
| 138 | +| [1658. 将 x 减到 0 的最小操作数](https://leetcode.cn/problems/minimum-operations-to-reduce-x-to-zero/) | | ❌ | |
| 139 | +| [713. 乘积小于 K 的子数组](https://leetcode.cn/problems/subarray-product-less-than-k/) | | ❌ | |
| 140 | +| [1004. 最大连续 1 的个数 III](https://leetcode.cn/problems/max-consecutive-ones-iii/) | | ✔️ | |
| 141 | +| [424. 替换后的最长重复字符](https://leetcode.cn/problems/longest-repeating-character-replacement/) | | ❗ | |
| 142 | +| [219. 存在重复元素 II](https://leetcode.cn/problems/contains-duplicate-ii/) | | ❗ | |
| 143 | +| [220. 存在重复元素 III](https://leetcode.cn/problems/contains-duplicate-iii/) | | ❌ | |
| 144 | +| [209. 长度最小的子数组](https://leetcode.cn/problems/minimum-size-subarray-sum/) | | ❌ | |
| 145 | +| [395. 至少有 K 个重复字符的最长子串](https://leetcode.cn/problems/longest-substring-with-at-least-k-repeating-characters/) | | ❌ | |
151 | 146 |
|
152 | 147 | #### 二分查找算法 |
153 | 148 |
|
|
0 commit comments