|
58 | 58 |
|
59 | 59 | ## 💻 刷题 |
60 | 60 |
|
61 | | -### 数组 |
| 61 | +### 链表 |
62 | 62 |
|
63 | | -- [三数之和](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/array/三数之和.java) |
64 | | -- [两数之和](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/array/两数之和.java) |
65 | | -- [二维数组](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/array/二维数组.java) |
66 | | -- [删除排序数组中的重复项](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/array/删除排序数组中的重复项.java) |
67 | | -- [加一](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/array/加一.java) |
68 | | -- [在排序数组中查找元素的第一个和最后一个位置](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/array/在排序数组中查找元素的第一个和最后一个位置.java) |
69 | | -- [在排序数组中查找数字 I](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/array/在排序数组中查找数字I.java) |
70 | | -- [存在重复元素](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/array/存在重复元素.java) |
71 | | -- [对角线遍历](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/array/对角线遍历.java) |
72 | | -- [寻找数组的中心索引](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/array/寻找数组的中心索引.java) |
73 | | -- [将数组分成和相等的三个部分](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/array/将数组分成和相等的三个部分.java) |
74 | | -- [数组二分查找](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/array/数组二分查找.java) |
75 | | -- [数组拆分 1](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/array/数组拆分1.java) |
76 | | -- [旋转数组](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/array/旋转数组.java) |
77 | | -- [旋转矩阵](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/array/旋转矩阵.java) |
78 | | -- [最大连续 1 的个数](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/array/最大连续1的个数.java) |
79 | | -- [杨辉三角](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/array/杨辉三角.java) |
80 | | -- [杨辉三角 2](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/array/杨辉三角2.java) |
81 | | -- [模拟 ArrayList1](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/array/模拟ArrayList1.java) |
82 | | -- [模拟 ArrayList2](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/array/模拟ArrayList2.java) |
83 | | -- [移动零](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/array/移动零.java) |
84 | | -- [移除元素](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/array/移除元素.java) |
85 | | -- [至少是其他数字两倍的最大数](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/array/至少是其他数字两倍的最大数.java) |
86 | | -- [螺旋矩阵](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/array/螺旋矩阵.java) |
87 | | -- [长度最小的子数组](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/array/长度最小的子数组.java) |
88 | | -- [零矩阵](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/array/零矩阵.java) |
| 63 | +#### 双指针技巧秒杀七道链表题目 |
89 | 64 |
|
90 | | -### 链表 |
| 65 | +| 题目 | 掌握度 | |
| 66 | +| ------------------------------------------------------------------------------------------------------------------ | ------ | |
| 67 | +| [141. 环形链表](https://leetcode.cn/problems/linked-list-cycle/) | 已掌握 | |
| 68 | +| [142. 环形链表 II](https://leetcode.cn/problems/linked-list-cycle-ii/) | 已掌握 | |
| 69 | +| [160. 相交链表](https://leetcode.cn/problems/intersection-of-two-linked-lists/) | 已掌握 | |
| 70 | +| [19. 删除链表的倒数第 N 个结点](https://leetcode.cn/problems/remove-nth-node-from-end-of-list/) | 已掌握 | |
| 71 | +| [21. 合并两个有序链表](https://leetcode.cn/problems/merge-two-sorted-lists/) | 已掌握 | |
| 72 | +| [23. 合并 K 个升序链表](https://leetcode.cn/problems/merge-k-sorted-lists/) | 未掌握 | |
| 73 | +| [86. 分隔链表](https://leetcode.cn/problems/partition-list/) | 已掌握 | |
| 74 | +| [876. 链表的中间结点](https://leetcode.cn/problems/middle-of-the-linked-list/) | 已掌握 | |
| 75 | +| [剑指 Offer 22. 链表中倒数第 k 个节点](https://leetcode.cn/problems/lian-biao-zhong-dao-shu-di-kge-jie-dian-lcof/) | 已掌握 | |
| 76 | + |
| 77 | +#### 【练习】链表双指针经典习题 |
| 78 | + |
| 79 | +| 题目 | 掌握度 | |
| 80 | +| ------------------------------------------------------------------------------------------------------ | ------ | |
| 81 | +| [82. 删除排序链表中的重复元素 II](https://leetcode.cn/problems/remove-duplicates-from-sorted-list-ii/) | 已掌握 | |
| 82 | +| [378. 有序矩阵中第 K 小的元素](https://leetcode.cn/problems/kth-smallest-element-in-a-sorted-matrix/) | 未掌握 | |
| 83 | +| [373. 查找和最小的 K 对数字](https://leetcode.cn/problems/find-k-pairs-with-smallest-sums/) | 未掌握 | |
| 84 | +| [2. 两数相加](https://leetcode.cn/problems/add-two-numbers/) | 已掌握 | |
| 85 | +| [445. 两数相加 II](https://leetcode.cn/problems/add-two-numbers-ii/) | 已掌握 | |
| 86 | + |
| 87 | +#### 如何判断回文链表 |
| 88 | + |
| 89 | +#### 单链表的花式反转方法汇总 |
| 90 | + |
| 91 | +| 题目 | 掌握度 | |
| 92 | +| ------------------------------------------------------------ | ------ | |
| 93 | +| [206. 反转链表](https://leetcode.cn/problems/reverse-linked-list/) | 未掌握 | |
| 94 | +| [92. 反转链表 II](https://leetcode.cn/problems/reverse-linked-list-ii/) | 不熟练 | |
| 95 | +| [25. K 个一组翻转链表](https://leetcode.cn/problems/reverse-nodes-in-k-group/) | 不熟练 | |
| 96 | + |
| 97 | +### 数组 |
91 | 98 |
|
92 | | -- [两数相加](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/list/两数相加.java) |
93 | | -- [二进制链表转整数](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/list/二进制链表转整数.java) |
94 | | -- [删除排序链表中的重复元素](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/list/删除排序链表中的重复元素.java) |
95 | | -- [单链表示例](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/list/单链表示例.java) |
96 | | -- [双链表示例](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/list/双链表示例.java) |
97 | | -- [反转链表](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/list/反转链表.java) |
98 | | -- [合并 K 个排序链表](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/list/合并K个排序链表.java) |
99 | | -- [合并 K 个排序链表解法 2](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/list/合并K个排序链表解法2.java) |
100 | | -- [合并两个有序链表](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/list/合并两个有序链表.java) |
101 | | -- [回文链表](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/list/回文链表.java) |
102 | | -- [排序链表](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/list/排序链表.java) |
103 | | -- [环形链表](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/list/环形链表.java) |
104 | | -- [相交链表](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/list/相交链表.java) |
105 | | -- [移除重复节点](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/list/移除重复节点.java) |
106 | | -- [移除链表元素](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/list/移除链表元素.java) |
107 | | -- [返回倒数第 k 个节点](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/list/返回倒数第k个节点.java) |
108 | | -- [链表的中间结点](https://github.com/dunwu/algorithm-tutorial/blob/master/codes/algorithm/src/main/java/io/github/dunwu/algorithm/list/链表的中间结点.java) |
| 99 | +#### 双指针技巧秒杀七道数组题目 |
| 100 | + |
| 101 | +| 题目 | 掌握度 | |
| 102 | +| ------------------------------------------------------------ | ------ | |
| 103 | +| [26. 删除有序数组中的重复项](https://leetcode.cn/problems/remove-duplicates-from-sorted-array/) | 已掌握 | |
| 104 | +| [27. 移除元素](https://leetcode.cn/problems/remove-element/) | 已掌握 | |
| 105 | +| [283. 移动零](https://leetcode.cn/problems/move-zeroes/) | 已掌握 | |
| 106 | +| [704. 二分查找](https://leetcode.cn/problems/binary-search/) | 已掌握 | |
| 107 | +| [1. 两数之和](https://leetcode.cn/problems/two-sum/) | 已掌握 | |
| 108 | +| [167. 两数之和 II - 输入有序数组](https://leetcode.cn/problems/two-sum-ii-input-array-is-sorted/) | 已掌握 | |
| 109 | +| [LCR 179. 查找总价格为目标值的两个商品](https://leetcode.cn/problems/he-wei-sde-liang-ge-shu-zi-lcof/) | 已掌握 | |
| 110 | +| [LCR 006. 两数之和 II - 输入有序数组](https://leetcode.cn/problems/kLl5u1/) | 已掌握 | |
| 111 | +| [344. 反转字符串](https://leetcode.cn/problems/reverse-string/) | 已掌握 | |
| 112 | +| [5. 最长回文子串](https://leetcode.cn/problems/longest-palindromic-substring/) | 未掌握 | |
| 113 | + |
| 114 | +#### 二维数组的花式遍历技巧 |
| 115 | + |
| 116 | +| 题目 | 掌握度 | |
| 117 | +| ------------------------------------------------------------ | ------ | |
| 118 | +| [48. 旋转图像](https://leetcode.cn/problems/rotate-image/) | 未掌握 | |
| 119 | +| [54. 螺旋矩阵](https://leetcode.cn/problems/spiral-matrix/) | 未掌握 | |
| 120 | +| [59. 螺旋矩阵 II](https://leetcode.cn/problems/spiral-matrix-ii/) | 未掌握 | |
| 121 | + |
| 122 | +#### 【练习】数组双指针经典习题 |
| 123 | + |
| 124 | +| 题目 | 掌握度 | |
| 125 | +| ------------------------------------------------------------ | ------ | |
| 126 | +| [80. 删除有序数组中的重复项 II](https://leetcode.cn/problems/remove-duplicates-from-sorted-array-ii/) | 已掌握 | |
| 127 | +| [125. 验证回文串](https://leetcode.cn/problems/valid-palindrome/) | 已掌握 | |
| 128 | +| [75. 颜色分类](https://leetcode.cn/problems/sort-colors/) | 已掌握 | |
| 129 | +| [88. 合并两个有序数组](https://leetcode.cn/problems/merge-sorted-array/) | | |
109 | 130 |
|
110 | 131 | ### 栈 |
111 | 132 |
|
|
0 commit comments