|
13 | 13 |
|
14 | 14 | - 组队、修改群昵称。
|
15 | 15 | - 熟悉打卡规则。
|
| 16 | +- 可预习内容:[LeetCode 入门与攻略](https://algo.itcharge.cn/00.%E5%BA%8F%E8%A8%80/03.LeetCode-%E5%85%A5%E9%97%A8%E4%B8%8E%E6%8C%87%E5%8D%97/) |
16 | 17 |
|
17 | 18 | ---
|
18 | 19 |
|
19 | 20 | ### Task 01:数据结构与算法简介、LeetCode 入门及攻略(1 天)
|
20 | 21 |
|
21 | 22 | - 第 01 天学习内容:
|
22 | 23 |
|
23 |
| - - [数据结构与算法](https://algo.itcharge.cn/00.%E5%BA%8F%E8%A8%80/01.%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%B8%8E%E7%AE%97%E6%B3%95/) |
| 24 | + - [数据结构与算法](https://algo.itcharge.cn/00.Introduction/01.Data-Structures-Algorithms/) |
24 | 25 |
|
25 |
| - - [算法复杂度](https://algo.itcharge.cn/00.%E5%BA%8F%E8%A8%80/02.%E7%AE%97%E6%B3%95%E5%A4%8D%E6%9D%82%E5%BA%A6/) |
| 26 | + - [算法复杂度](https://algo.itcharge.cn/00.Introduction/02.Algorithm-Complexity/) |
26 | 27 |
|
27 |
| - - [LeetCode 入门与攻略](https://algo.itcharge.cn/00.%E5%BA%8F%E8%A8%80/03.LeetCode-%E5%85%A5%E9%97%A8%E4%B8%8E%E6%8C%87%E5%8D%97/) |
| 28 | + - [LeetCode 入门与指南](https://algo.itcharge.cn/00.Introduction/03.LeetCode-Guide/) |
28 | 29 |
|
29 | 30 |
|
30 | 31 | - 第 01 天课程题目列表:
|
|
37 | 38 | ### Task 02:数组基础(2 天)
|
38 | 39 |
|
39 | 40 | - 第 02 ~ 03 天学习内容:
|
40 |
| - - [数组基础知识](https://algo.itcharge.cn/01.%E6%95%B0%E7%BB%84/01.%E6%95%B0%E7%BB%84%E5%9F%BA%E7%A1%80%E7%9F%A5%E8%AF%86/01.%E6%95%B0%E7%BB%84%E5%9F%BA%E7%A1%80%E7%9F%A5%E8%AF%86/) |
| 41 | + - [数组基础知识](https://algo.itcharge.cn/01.Array/01.Array-Basic/01.Array-Basic/) |
41 | 42 |
|
42 | 43 |
|
43 | 44 | - 第 02 天课程题目:
|
|
49 | 50 | - [0048. 旋转图像](https://leetcode-cn.com/problems/rotate-image/)
|
50 | 51 | - [0054. 螺旋矩阵](https://leetcode-cn.com/problems/spiral-matrix/)
|
51 | 52 | - [0498. 对角线遍历](https://leetcode-cn.com/problems/diagonal-traverse/)
|
52 |
| -- [更多数组基础题目](https://algo.itcharge.cn/01.%E6%95%B0%E7%BB%84/01.%E6%95%B0%E7%BB%84%E5%9F%BA%E7%A1%80%E7%9F%A5%E8%AF%86/10.%E6%95%B0%E7%BB%84%E5%9F%BA%E7%A1%80%E9%A2%98%E7%9B%AE/) |
| 53 | +- [更多数组基础题目](https://algo.itcharge.cn/01.Array/01.Array-Basic/02.Array-Basic-List/) |
53 | 54 |
|
54 | 55 | ---
|
55 | 56 |
|
56 | 57 | ### Task 03 数组排序(4 天)
|
57 | 58 |
|
58 | 59 | - 第 04 天学习内容:
|
59 |
| - - [冒泡排序](https://algo.itcharge.cn/01.%E6%95%B0%E7%BB%84/02.%E6%95%B0%E7%BB%84%E6%8E%92%E5%BA%8F/01.%E5%86%92%E6%B3%A1%E6%8E%92%E5%BA%8F/)、[选择排序](https://algo.itcharge.cn/01.%E6%95%B0%E7%BB%84/02.%E6%95%B0%E7%BB%84%E6%8E%92%E5%BA%8F/02.%E9%80%89%E6%8B%A9%E6%8E%92%E5%BA%8F/)、[插入排序](https://algo.itcharge.cn/01.%E6%95%B0%E7%BB%84/02.%E6%95%B0%E7%BB%84%E6%8E%92%E5%BA%8F/03.%E6%8F%92%E5%85%A5%E6%8E%92%E5%BA%8F/) |
| 60 | + - [冒泡排序](https://algo.itcharge.cn/01.Array/02.Array-Sort/01.Array-Bubble-Sort/) |
| 61 | + - [选择排序](https://algo.itcharge.cn/01.Array/02.Array-Sort/02.Array-Selection-Sort/) |
| 62 | + - [插入排序](https://algo.itcharge.cn/01.Array/02.Array-Sort/03.Array-Insertion-Sort/) |
60 | 63 |
|
61 | 64 |
|
62 | 65 | - 第 04 天课程题目:
|
63 | 66 | - [剑指 Offer 45. 把数组排成最小的数](https://leetcode-cn.com/problems/ba-shu-zu-pai-cheng-zui-xiao-de-shu-lcof/)
|
64 | 67 | - [0283. 移动零](https://leetcode-cn.com/problems/move-zeroes/)
|
65 | 68 | - [0912. 排序数组](https://leetcode-cn.com/problems/sort-an-array/)
|
66 | 69 | - 第 05 天学习内容:
|
67 |
| - - [希尔排序](https://algo.itcharge.cn/01.%E6%95%B0%E7%BB%84/02.%E6%95%B0%E7%BB%84%E6%8E%92%E5%BA%8F/04.%E5%B8%8C%E5%B0%94%E6%8E%92%E5%BA%8F/)、[归并排序](https://algo.itcharge.cn/01.%E6%95%B0%E7%BB%84/02.%E6%95%B0%E7%BB%84%E6%8E%92%E5%BA%8F/05.%E5%BD%92%E5%B9%B6%E6%8E%92%E5%BA%8F/) |
68 |
| - |
| 70 | + - [希尔排序](https://algo.itcharge.cn/01.Array/02.Array-Sort/04.Array-Shell-Sort/) |
| 71 | + - [归并排序](https://algo.itcharge.cn/01.Array/02.Array-Sort/05.Array-Merge-Sort/) |
| 72 | + |
69 | 73 | - 第 05 天课程题目:
|
70 | 74 | - [0506. 相对名次](https://leetcode-cn.com/problems/relative-ranks/)
|
71 | 75 | - [面试题 10.01. 合并排序的数组](https://leetcode-cn.com/problems/sorted-merge-lcci/)
|
72 | 76 | - [剑指 Offer 51. 数组中的逆序对](https://leetcode-cn.com/problems/shu-zu-zhong-de-ni-xu-dui-lcof/)
|
73 | 77 |
|
74 | 78 | - 第 06 天学习内容:
|
75 |
| - - [快速排序](https://algo.itcharge.cn/01.%E6%95%B0%E7%BB%84/02.%E6%95%B0%E7%BB%84%E6%8E%92%E5%BA%8F/06.%E5%BF%AB%E9%80%9F%E6%8E%92%E5%BA%8F/)、[堆排序](https://algo.itcharge.cn/01.%E6%95%B0%E7%BB%84/02.%E6%95%B0%E7%BB%84%E6%8E%92%E5%BA%8F/07.%E5%A0%86%E6%8E%92%E5%BA%8F/) |
76 |
| - |
| 79 | + - [快速排序](https://algo.itcharge.cn/01.Array/02.Array-Sort/06.Array-Quick-Sort/) |
| 80 | + - [堆排序](https://algo.itcharge.cn/01.Array/02.Array-Sort/07.Array-Heap-Sort/) |
| 81 | + |
77 | 82 | - 第 06 天课程题目:
|
78 | 83 | - [0075. 颜色分类](https://leetcode-cn.com/problems/sort-colors/)
|
79 | 84 | - [0215. 数组中的第K个最大元素](https://leetcode-cn.com/problems/kth-largest-element-in-an-array/)
|
80 | 85 | - [剑指 Offer 40. 最小的k个数](https://leetcode-cn.com/problems/zui-xiao-de-kge-shu-lcof/)
|
81 | 86 | - 第 07 天学习内容:
|
82 |
| - - [计数排序](https://algo.itcharge.cn/01.%E6%95%B0%E7%BB%84/02.%E6%95%B0%E7%BB%84%E6%8E%92%E5%BA%8F/08.%E8%AE%A1%E6%95%B0%E6%8E%92%E5%BA%8F/)、[桶排序](https://algo.itcharge.cn/01.%E6%95%B0%E7%BB%84/02.%E6%95%B0%E7%BB%84%E6%8E%92%E5%BA%8F/09.%E6%A1%B6%E6%8E%92%E5%BA%8F/)、[基数排序](https://algo.itcharge.cn/01.%E6%95%B0%E7%BB%84/02.%E6%95%B0%E7%BB%84%E6%8E%92%E5%BA%8F/10.%E5%9F%BA%E6%95%B0%E6%8E%92%E5%BA%8F/) |
83 |
| - |
| 87 | + - [计数排序](https://algo.itcharge.cn/01.Array/02.Array-Sort/08.Array-Counting-Sort/) |
| 88 | + - [桶排序](https://algo.itcharge.cn/01.Array/02.Array-Sort/09.Array-Bucket-Sort/) |
| 89 | + - [基数排序](https://algo.itcharge.cn/01.Array/02.Array-Sort/10.Array-Radix-Sort/) |
| 90 | + |
84 | 91 | - 第 07 天课程题目:
|
85 | 92 | - [1122. 数组的相对排序](https://leetcode-cn.com/problems/relative-sort-array/)
|
86 | 93 | - [0908. 最小差值 I](https://leetcode-cn.com/problems/smallest-range-i/)
|
87 | 94 | - [0164. 最大间距](https://leetcode-cn.com/problems/maximum-gap/)
|
88 |
| -- [更多排序相关题目](https://algo.itcharge.cn/01.%E6%95%B0%E7%BB%84/02.%E6%95%B0%E7%BB%84%E6%8E%92%E5%BA%8F/10.%E6%95%B0%E7%BB%84%E6%8E%92%E5%BA%8F%E9%A2%98%E7%9B%AE/) |
| 95 | +- [更多数组排序题目](https://algo.itcharge.cn/01.Array/02.Array-Sort/11.Array-Sort-List/) |
89 | 96 |
|
90 | 97 | ---
|
91 | 98 |
|
92 | 99 | ### Task 04 数组二分查找(3 天)
|
93 | 100 |
|
94 | 101 | - 第 08 ~ 10 天学习内容:
|
95 |
| - - [二分查找知识](https://algo.itcharge.cn/01.%E6%95%B0%E7%BB%84/03.%E4%BA%8C%E5%88%86%E6%9F%A5%E6%89%BE/01.%E4%BA%8C%E5%88%86%E6%9F%A5%E6%89%BE%E7%9F%A5%E8%AF%86/) |
| 102 | + - [二分查找知识](https://algo.itcharge.cn/01.Array/03.Array-Binary-Search/01.Array-Binary-Search/) |
96 | 103 |
|
97 | 104 |
|
98 | 105 | - 第 08 天课程题目:
|
|
108 | 115 | - [0033. 搜索旋转排序数组](https://leetcode-cn.com/problems/search-in-rotated-sorted-array/)
|
109 | 116 | - [0153. 寻找旋转排序数组中的最小值](https://leetcode-cn.com/problems/find-minimum-in-rotated-sorted-array/)
|
110 | 117 |
|
111 |
| -- [更多二分查找题目](https://algo.itcharge.cn/01.%E6%95%B0%E7%BB%84/03.%E4%BA%8C%E5%88%86%E6%9F%A5%E6%89%BE/10.%E4%BA%8C%E5%88%86%E6%9F%A5%E6%89%BE%E9%A2%98%E7%9B%AE/) |
| 118 | +- [更多二分查找题目](https://algo.itcharge.cn/01.Array/03.Array-Binary-Search/02.Array-Binary-Search-List/) |
112 | 119 |
|
113 | 120 | ---
|
114 | 121 |
|
115 | 122 | ### Task 05 数组双指针、滑动窗口(3 天)
|
116 | 123 |
|
117 | 124 | - 第 11 ~ 12 天学习内容:
|
118 |
| - - [双指针基础知识](https://algo.itcharge.cn/01.%E6%95%B0%E7%BB%84/04.%E6%95%B0%E7%BB%84%E5%8F%8C%E6%8C%87%E9%92%88/01.%E6%95%B0%E7%BB%84%E5%8F%8C%E6%8C%87%E9%92%88%E7%9F%A5%E8%AF%86/) |
| 125 | + - [数组双指针知识](https://algo.itcharge.cn/01.Array/04.Array-Two-Pointers/01.Array-Two-Pointers/) |
119 | 126 |
|
120 | 127 |
|
121 | 128 | - 第 11 天课程题目:
|
|
128 | 135 | - [0075. 颜色分类](https://leetcode-cn.com/problems/sort-colors/)
|
129 | 136 | - [0088. 合并两个有序数组](https://leetcode-cn.com/problems/merge-sorted-array/)
|
130 | 137 |
|
131 |
| -- [更多双指针题目](https://algo.itcharge.cn/01.%E6%95%B0%E7%BB%84/04.%E6%95%B0%E7%BB%84%E5%8F%8C%E6%8C%87%E9%92%88/10.%E6%95%B0%E7%BB%84%E5%8F%8C%E6%8C%87%E9%92%88%E9%A2%98%E7%9B%AE/) |
| 138 | +- [更多数组双指针题目](https://algo.itcharge.cn/01.Array/04.Array-Two-Pointers/02.Array-Two-Pointers-List/) |
132 | 139 | - 第 13 天学习内容:
|
133 |
| - - [滑动窗口基础知识](https://algo.itcharge.cn/01.%E6%95%B0%E7%BB%84/05.%E6%95%B0%E7%BB%84%E6%BB%91%E5%8A%A8%E7%AA%97%E5%8F%A3/01.%E6%95%B0%E7%BB%84%E6%BB%91%E5%8A%A8%E7%AA%97%E5%8F%A3%E7%9F%A5%E8%AF%86/) |
| 140 | + - [数组滑动窗口知识](https://algo.itcharge.cn/01.Array/05.Array-Sliding-Window/01.Array-Sliding-Window/) |
134 | 141 |
|
135 | 142 | - 第 13 天课程题目:
|
136 | 143 | - [0674. 最长连续递增序列](https://leetcode-cn.com/problems/longest-continuous-increasing-subsequence/)
|
137 | 144 | - [1004. 最大连续1的个数 III](https://leetcode-cn.com/problems/max-consecutive-ones-iii/)
|
138 | 145 | - [0220. 存在重复元素 III](https://leetcode-cn.com/problems/contains-duplicate-iii/)
|
139 | 146 |
|
140 |
| -- [更多滑动窗口题目](https://algo.itcharge.cn/01.%E6%95%B0%E7%BB%84/05.%E6%95%B0%E7%BB%84%E6%BB%91%E5%8A%A8%E7%AA%97%E5%8F%A3/10.%E6%BB%91%E5%8A%A8%E7%AA%97%E5%8F%A3%E9%A2%98%E7%9B%AE/) |
141 |
| - |
| 147 | +- [滑动窗口题目](https://algo.itcharge.cn/01.Array/05.Array-Sliding-Window/02.Array-Sliding-Window-List/) |
0 commit comments