Skip to content

Commit

Permalink
Update Course-Web-03.md
Browse files Browse the repository at this point in the history
  • Loading branch information
杨世超 committed May 16, 2022
1 parent 1bf455c commit 556b42e
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions Assets/Course/Course-Web-03.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@

- 组队、修改群昵称。
- 熟悉打卡规则。
- 之前从未在 LeetCode 上刷过题的同学建议阅读相关内容:[LeetCode 入门与攻略](https://algo.itcharge.cn/00.Introduction/03.LeetCode-Guide.md)
- 之前从未在 LeetCode 上刷过题的同学建议阅读相关内容:[LeetCode 入门与攻略](https://algo.itcharge.cn/00.Introduction/03.LeetCode-Guide/)

---

### Task 01:哈希表(2 天)

- 第 01 ~ 02 天学习内容:
- [哈希表知识](https://algo.itcharge.cn/05.Hash-Table/01.Hash-Table.md)
- [哈希表知识](https://algo.itcharge.cn/05.Hash-Table/01.Hash-Table/)
- 第 01 天课程题目:
- [0217. 存在重复元素](https://leetcode-cn.com/problems/contains-duplicate/)
- [0219. 存在重复元素 II](https://leetcode-cn.com/problems/contains-duplicate-ii/)
Expand All @@ -30,26 +30,26 @@
- [0350. 两个数组的交集 II](https://leetcode-cn.com/problems/intersection-of-two-arrays-ii/)
- [0706. 设计哈希映射](https://leetcode-cn.com/problems/design-hashmap/)

- [更多哈希表相关题目](https://algo.itcharge.cn/05.Hash-Table/02.Hash-Table-List.md)
- [更多哈希表相关题目](https://algo.itcharge.cn/05.Hash-Table/02.Hash-Table-List/)

### Task 02:字符串与字符串匹配(5 天)

#### 02-01 字符串基础知识(1 天)

- 第 03 天学习内容:
- [字符串基础知识](https://algo.itcharge.cn/06.String/01.String-Basic/01.String-Basic.md)
- [字符串基础知识](https://algo.itcharge.cn/06.String/01.String-Basic/01.String-Basic/)
- 第 03 天课程题目:
- [0125. 验证回文串](https://leetcode-cn.com/problems/valid-palindrome/)
- [0344. 反转字符串](https://leetcode-cn.com/problems/reverse-string/)
- [0557. 反转字符串中的单词 III](https://leetcode-cn.com/problems/reverse-words-in-a-string-iii/)
- [更多字符串基础知识相关题目](https://algo.itcharge.cn/06.String/01.String-Basic/02.String-Basic-List.md)
- [更多字符串基础知识相关题目](https://algo.itcharge.cn/06.String/01.String-Basic/02.String-Basic-List/)

#### 02-02 单模式串匹配问题(2 天)

- 第 04 ~ 05 天学习内容:
- [Brute Force 算法](https://algo.itcharge.cn/06.String/02.String-Single-Pattern-Matching/01.String-Brute-Force.md)
- [Rabin Karp 算法](https://algo.itcharge.cn/06.String/02.String-Single-Pattern-Matching/02.String-Rabin-Karp.md)
- [KMP 算法](https://algo.itcharge.cn/06.String/02.String-Single-Pattern-Matching/03.String-KMP.md)
- [Brute Force 算法](https://algo.itcharge.cn/06.String/02.String-Single-Pattern-Matching/01.String-Brute-Force)
- [Rabin Karp 算法](https://algo.itcharge.cn/06.String/02.String-Single-Pattern-Matching/02.String-Rabin-Karp)
- [KMP 算法](https://algo.itcharge.cn/06.String/02.String-Single-Pattern-Matching/03.String-KMP)
- 第 04 天课程题目:
- [0028. 实现 strStr()](https://leetcode-cn.com/problems/implement-strstr/)
- [0459. 重复的子字符串](https://leetcode-cn.com/problems/repeated-substring-pattern/)
Expand All @@ -58,12 +58,12 @@
- [0796. 旋转字符串](https://leetcode-cn.com/problems/rotate-string/)
- [1408. 数组中的字符串匹配](https://leetcode-cn.com/problems/string-matching-in-an-array/)
- [2156. 查找给定哈希值的子串](https://leetcode-cn.com/problems/find-substring-with-given-hash-value/)
- [更多单模式匹配题目](https://algo.itcharge.cn/06.String/02.String-Single-Pattern-Matching/07.String-Single-Pattern-Matching-List.md)
- [更多单模式匹配题目](https://algo.itcharge.cn/06.String/02.String-Single-Pattern-Matching/07.String-Single-Pattern-Matching-List/)

#### 02-03 多模式串匹配问题(2 天)

- 第 06 ~ 07 天学习内容:
- [字典树知识](https://algo.itcharge.cn/06.String/03.String-Multi-Pattern-Matching/01.Trie.md)
- [字典树知识](https://algo.itcharge.cn/06.String/03.String-Multi-Pattern-Matching/01.Trie/)
- 第 06 天课程题目:
- [0208. 实现 Trie (前缀树)](https://leetcode-cn.com/problems/implement-trie-prefix-tree/)
- [0677. 键值映射](https://leetcode-cn.com/problems/map-sum-pairs/)
Expand All @@ -73,15 +73,15 @@
- [0648. 单词替换](https://leetcode-cn.com/problems/replace-words/)
- [0676. 实现一个魔法字典](https://leetcode-cn.com/problems/implement-magic-dictionary/)

- [更多字典树题目](https://algo.itcharge.cn/06.String/03.String-Multi-Pattern-Matching/02.Trie-List.md)
- [更多字典树题目](https://algo.itcharge.cn/06.String/03.String-Multi-Pattern-Matching/02.Trie-List/)

### Task 03 二叉树(5 天)

#### 03-01 二叉树的遍历(2 天)

- 第 08 ~ 09 天学习内容:
- [树与二叉树基础知识](https://algo.itcharge.cn/07.Tree/01.Binary-Tree/01.Binary-Tree-Basic.md)
- [二叉树的遍历](https://algo.itcharge.cn/07.Tree/01.Binary-Tree/02.Binary-Tree-Traverse.md)
- [树与二叉树基础知识](https://algo.itcharge.cn/07.Tree/01.Binary-Tree/01.Binary-Tree-Basic)
- [二叉树的遍历](https://algo.itcharge.cn/07.Tree/01.Binary-Tree/02.Binary-Tree-Traverse/)
- 第 08 天课程题目:
- [0144. 二叉树的前序遍历](https://leetcode-cn.com/problems/binary-tree-preorder-traversal/)
- [0094. 二叉树的中序遍历](https://leetcode-cn.com/problems/binary-tree-inorder-traversal/)
Expand All @@ -91,22 +91,22 @@
- [0104. 二叉树的最大深度](https://leetcode-cn.com/problems/maximum-depth-of-binary-tree/)
- [0112. 路径总和](https://leetcode-cn.com/problems/path-sum/)

- [更多二叉树的遍历题目](https://algo.itcharge.cn/07.Tree/01.Binary-Tree/03.Binary-Tree-Traverse-List.md)
- [更多二叉树的遍历题目](https://algo.itcharge.cn/07.Tree/01.Binary-Tree/03.Binary-Tree-Traverse-List/)

#### 03-02 二叉树的还原(1 天)

- 第 10 天学习内容:
- [二叉树的还原](https://algo.itcharge.cn/07.Tree/01.Binary-Tree/04.Binary-Tree-Reduction.md)
- [二叉树的还原](https://algo.itcharge.cn/07.Tree/01.Binary-Tree/04.Binary-Tree-Reduction/)
- 第 10 天课程题目:
- [0105. 从前序与中序遍历序列构造二叉树](https://leetcode-cn.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal/)
- [0106. 从中序与后序遍历序列构造二叉树](https://leetcode-cn.com/problems/construct-binary-tree-from-inorder-and-postorder-traversal/)
- [0889. 根据前序和后序遍历构造二叉树](https://leetcode-cn.com/problems/construct-binary-tree-from-preorder-and-postorder-traversal/)
- [更多二叉树的还原题目](https://algo.itcharge.cn/07.Tree/01.Binary-Tree/05.Binary-Tree-Reduction-List.md)
- [更多二叉树的还原题目](https://algo.itcharge.cn/07.Tree/01.Binary-Tree/05.Binary-Tree-Reduction-List/)

#### 03-04 二叉搜索树(2 天)

- 第 11 ~ 12 天学习内容:
- [二叉搜索树知识](https://algo.itcharge.cn/07.Tree/02.Binary-Search-Tree/01.Binary-Search-Tree.md)
- [二叉搜索树知识](https://algo.itcharge.cn/07.Tree/02.Binary-Search-Tree/01.Binary-Search-Tree/)
- 第 11 天课程题目:
- [0700. 二叉搜索树中的搜索](https://leetcode-cn.com/problems/search-in-a-binary-search-tree/)
- [0701. 二叉搜索树中的插入操作](https://leetcode-cn.com/problems/insert-into-a-binary-search-tree/)
Expand All @@ -115,12 +115,12 @@
- [0098. 验证二叉搜索树](https://leetcode-cn.com/problems/validate-binary-search-tree/)
- [0108. 将有序数组转换为二叉搜索树](https://leetcode-cn.com/problems/convert-sorted-array-to-binary-search-tree/)
- [0235. 二叉搜索树的最近公共祖先](https://leetcode-cn.com/problems/lowest-common-ancestor-of-a-binary-search-tree/)
- [更多二叉搜索树题目](https://algo.itcharge.cn/07.Tree/02.Binary-Search-Tree/02.Binary-Search-Tree-List.md)
- [更多二叉搜索树题目](https://algo.itcharge.cn/07.Tree/02.Binary-Search-Tree/02.Binary-Search-Tree-List/)

### Task 04:并查集(2 天)

- 第 13 ~14 天学习内容:
- [并查集知识](https://algo.itcharge.cn/07.Tree/05.Union-Find/01.Union-Find.md)
- [并查集知识](https://algo.itcharge.cn/07.Tree/05.Union-Find/01.Union-Find/)
- 第 13 天课程题目:
- [0990. 等式方程的可满足性](https://leetcode-cn.com/problems/satisfiability-of-equality-equations/)
- [1202. 交换字符串中的元素](https://leetcode-cn.com/problems/smallest-string-with-swaps/)
Expand All @@ -129,4 +129,4 @@
- [0547. 省份数量](https://leetcode-cn.com/problems/number-of-provinces/)
- [0128. 最长连续序列](https://leetcode-cn.com/problems/longest-consecutive-sequence/)
- [0765. 情侣牵手](https://leetcode-cn.com/problems/couples-holding-hands/)
- [更多并查集题目](https://algo.itcharge.cn/07.Tree/05.Union-Find/02.Union-Find-List.md)
- [更多并查集题目](https://algo.itcharge.cn/07.Tree/05.Union-Find/02.Union-Find-List/)

0 comments on commit 556b42e

Please sign in to comment.