Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit decd26c

Browse files
committed
Update Course-Git-02.md
1 parent daecb5e commit decd26c

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

‎Assets/Course/Course-Git-02.md

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,13 @@
3030
- [0234. 回文链表](https://leetcode.cn/problems/palindrome-linked-list/)
3131
- [0138. 复制带随机指针的链表](https://leetcode.cn/problems/copy-list-with-random-pointer/)
3232
- [更多链表基础题目](https://github.com/itcharge/LeetCode-Py/blob/main/Contents/02.Linked-List/01.Linked-List-Basic/10.Linked-List-Basic-List.md)
33-
3433
- 第 03 天学习内容:
3534
- [链表排序](https://github.com/itcharge/LeetCode-Py/blob/main/Contents/02.Linked-List/02.Linked-List-Sort/01.Linked-List-Sort.md)
3635
- 第 03 天课程题目:
3736
- [0147. 对链表进行插入排序](https://leetcode.cn/problems/insertion-sort-list/)
3837
- [0021. 合并两个有序链表](https://leetcode.cn/problems/merge-two-sorted-lists/)
3938
- [0148. 排序链表](https://leetcode.cn/problems/sort-list/)
40-
4139
- [更多链表排序题目](https://github.com/itcharge/LeetCode-Py/blob/main/Contents/02.Linked-List/02.Linked-List-Sort/10.Linked-List-Sort-List.md)
42-
4340
- 第 04 天学习内容:
4441
- [链表双指针](https://github.com/itcharge/LeetCode-Py/blob/main/Contents/02.Linked-List/03.Linked-List-Two-Pointers/01.Linked-List-Two-Pointers.md)
4542
- 第 04 天课程题目:
@@ -61,7 +58,6 @@
6158
- [0394. 字符串解码](https://leetcode.cn/problems/decode-string/)
6259
- [0946. 验证栈序列](https://leetcode.cn/problems/validate-stack-sequences/)
6360
- [更多堆栈基础知识相关题目](https://github.com/itcharge/LeetCode-Py/blob/main/Contents/03.Stack/01.Stack-Basic/10.Stack-Basic-List.md)
64-
6561
- 第 07 天学习内容:
6662
- [单调栈](https://github.com/itcharge/LeetCode-Py/blob/main/Contents/03.Stack/03.Monotone-Stack/01.Monotone-Stack.md)
6763
- 第 07 天课程题目:
@@ -73,7 +69,7 @@
7369
### Task 03 深度优先搜索(第 08 ~ 10 天)
7470

7571
- 第 08 ~ 10 天学习内容:
76-
- [深度优先搜索](https://github.com/itcharge/LeetCode-Py/blob/main/Contents/03.Stack/02.Stack-DFS/01.Stack-DFS.md)
72+
- [深度优先搜索](https://github.com/itcharge/LeetCode-Py/blob/main/Contents/08.Graph/02.Graph-Traversal/01.Graph-DFS.md)
7773
- 第 08 天课程题目:
7874
- [0200. 岛屿数量](https://leetcode.cn/problems/number-of-islands/)
7975
- [0133. 克隆图](https://leetcode.cn/problems/clone-graph/)
@@ -86,7 +82,7 @@
8682
- [0417. 太平洋大西洋水流问题](https://leetcode.cn/problems/pacific-atlantic-water-flow/)
8783
- [1020. 飞地的数量](https://leetcode.cn/problems/number-of-enclaves/)
8884
- [1254. 统计封闭岛屿的数目](https://leetcode.cn/problems/number-of-closed-islands/)
89-
- [更多栈与深度优先搜索题目](https://github.com/itcharge/LeetCode-Py/blob/main/Contents/03.Stack/02.Stack-DFS/10.Stack-DFS-List.md)
85+
- [更多深度优先搜索题目](https://github.com/itcharge/LeetCode-Py/blob/main/Contents/08.Graph/02.Graph-Traversal/02.Graph-DFS-List.md)
9086

9187
### Task 04:队列与优先队列(第 11 ~ 12 天)
9288

@@ -97,7 +93,6 @@
9793
- [剑指 Offer II 041. 滑动窗口的平均值](https://leetcode.cn/problems/qIsx9U/)
9894
- [0225. 用队列实现栈](https://leetcode.cn/problems/implement-stack-using-queues/)
9995
- [更多队列基础题目](https://github.com/itcharge/LeetCode-Py/blob/main/Contents/04.Queue/01.Queue-Basic/10.Queue-Basic-List.md)
100-
10196
- 第 12 天学习内容:
10297
- [优先队列](https://github.com/itcharge/LeetCode-Py/blob/main/Contents/04.Queue/03.Priority-Queue/01.Priority-Queue.md)
10398
- 第 12 天课程题目:
@@ -109,7 +104,7 @@
109104
### Task 05 广度优先搜索(第 13 ~ 14 天)
110105

111106
- 第 13 ~ 14 天学习内容:
112-
- [广度优先搜索](https://github.com/itcharge/LeetCode-Py/blob/main/Contents/04.Queue/02.Queue-BFS/01.Queue-BFS.md)
107+
- [广度优先搜索](https://github.com/itcharge/LeetCode-Py/blob/main/Contents/08.Graph/02.Graph-Traversal/03.Graph-BFS.md)
113108
- 第 13 天课程题目:
114109
- [0463. 岛屿的周长](https://leetcode.cn/problems/island-perimeter/)
115110
- [0752. 打开转盘锁](https://leetcode.cn/problems/open-the-lock/)
@@ -118,7 +113,7 @@
118113
- [0542. 01 矩阵](https://leetcode.cn/problems/01-matrix/)
119114
- [0322. 零钱兑换](https://leetcode.cn/problems/coin-change/)
120115
- [剑指 Offer 13. 机器人的运动范围](https://leetcode.cn/problems/ji-qi-ren-de-yun-dong-fan-wei-lcof/)
121-
- [更多广度优先搜索题目](https://github.com/itcharge/LeetCode-Py/blob/main/Contents/04.Queue/02.Queue-BFS/10.Queue-BFS-List.md)
116+
- [更多广度优先搜索题目](https://github.com/itcharge/LeetCode-Py/blob/main/Contents/08.Graph/02.Graph-Traversal/04.Graph-BFS-List.md)
122117

123118
### Task 06 拓扑排序(第 15 天)
124119

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /