File tree 5 files changed +6
-4
lines changed
08.Graph/02.Graph-Traversal
5 files changed +6
-4
lines changed Original file line number Diff line number Diff line change
1
+ - [ 更多枚举算法相关题目] ( https://github.com/itcharge/LeetCode-Py/blob/main/Contents/09.Algorithm-Base/01.Enumeration-Algorithm/02.Enumeration-Algorithm-List.md )
Original file line number Diff line number Diff line change 1
- # LeetCode 题解(已完成 703 道)
1
+ # LeetCode 题解(已完成 704 道)
2
2
3
3
| 题号 | 标题 | 题解 | 标签 | 难度 |
4
4
| :------ | :------ | :------ | :------ | :------ |
389
389
| 0844 | [ 比较含退格的字符串] ( https://leetcode.cn/problems/backspace-string-compare/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0844.%20%E6%AF%94%E8%BE%83%E5%90%AB%E9%80%80%E6%A0%BC%E7%9A%84%E5%AD%97%E7%AC%A6%E4%B8%B2.md ) | 栈、双指针、字符串、模拟 | 简单 |
390
390
| 0845 | [ 数组中的最长山脉] ( https://leetcode.cn/problems/longest-mountain-in-array/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0845.%20%E6%95%B0%E7%BB%84%E4%B8%AD%E7%9A%84%E6%9C%80%E9%95%BF%E5%B1%B1%E8%84%89.md ) | 数组、双指针、动态规划、枚举 | 中等 |
391
391
| 0846 | [ 一手顺子] ( https://leetcode.cn/problems/hand-of-straights/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0846.%20%E4%B8%80%E6%89%8B%E9%A1%BA%E5%AD%90.md ) | 贪心、数组、哈希、排序 | 中等 |
392
+ | 0851 | [ 喧闹和富有] ( https://leetcode.cn/problems/loud-and-rich/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0851.%20%E5%96%A7%E9%97%B9%E5%92%8C%E5%AF%8C%E6%9C%89.md ) | 深度优先搜索、图、拓扑排序、数组 | 中等 |
392
393
| 0852 | [ 山脉数组的峰顶索引] ( https://leetcode.cn/problems/peak-index-in-a-mountain-array/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0852.%20%E5%B1%B1%E8%84%89%E6%95%B0%E7%BB%84%E7%9A%84%E5%B3%B0%E9%A1%B6%E7%B4%A2%E5%BC%95.md ) | 数组、二分查找 | 简单 |
393
394
| 0860 | [ 柠檬水找零] ( https://leetcode.cn/problems/lemonade-change/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0860.%20%E6%9F%A0%E6%AA%AC%E6%B0%B4%E6%89%BE%E9%9B%B6.md ) | 贪心、数组 | 简单 |
394
395
| 0861 | [ 翻转矩阵后的得分] ( https://leetcode.cn/problems/score-after-flipping-matrix/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0861.%20%E7%BF%BB%E8%BD%AC%E7%9F%A9%E9%98%B5%E5%90%8E%E7%9A%84%E5%BE%97%E5%88%86.md ) | | 简单 |
Original file line number Diff line number Diff line change 579
579
| :------ | :------ | :------ | :------ | :------ |
580
580
| 0210 | [ 课程表 II] ( https://leetcode.cn/problems/course-schedule-ii/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0210.%20%E8%AF%BE%E7%A8%8B%E8%A1%A8%20II.md ) | 深度优先搜索、广度优先搜索、图、拓扑排序 | 中等 |
581
581
| 0802 | [ 找到最终的安全状态] ( https://leetcode.cn/problems/find-eventual-safe-states/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0802.%20%E6%89%BE%E5%88%B0%E6%9C%80%E7%BB%88%E7%9A%84%E5%AE%89%E5%85%A8%E7%8A%B6%E6%80%81.md ) | 深度优先搜索、广度优先搜索、图、拓扑排序 | 中等 |
582
- | 0851 | 喧闹和富有 | | | |
582
+ | 0851 | [ 喧闹和富有] ( https://leetcode.cn/problems/loud-and-rich/ ) | [ Python ] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0851.%20%E5%96%A7%E9%97%B9%E5%92%8C%E5%AF%8C%E6%9C%89.md ) | 深度优先搜索、图、拓扑排序、数组 | 中等 |
583
583
584
584
### 图的生成树题目
585
585
Original file line number Diff line number Diff line change 4
4
| :------ | :------ | :------ | :------ | :------ |
5
5
| 0210 | [ 课程表 II] ( https://leetcode.cn/problems/course-schedule-ii/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0210.%20%E8%AF%BE%E7%A8%8B%E8%A1%A8%20II.md ) | 深度优先搜索、广度优先搜索、图、拓扑排序 | 中等 |
6
6
| 0802 | [ 找到最终的安全状态] ( https://leetcode.cn/problems/find-eventual-safe-states/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0802.%20%E6%89%BE%E5%88%B0%E6%9C%80%E7%BB%88%E7%9A%84%E5%AE%89%E5%85%A8%E7%8A%B6%E6%80%81.md ) | 深度优先搜索、广度优先搜索、图、拓扑排序 | 中等 |
7
- | 0851 | 喧闹和富有 | | | |
7
+ | 0851 | [ 喧闹和富有] ( https://leetcode.cn/problems/loud-and-rich/ ) | [ Python ] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0851.%20%E5%96%A7%E9%97%B9%E5%92%8C%E5%AF%8C%E6%9C%89.md ) | 深度优先搜索、图、拓扑排序、数组 | 中等 |
8
8
Original file line number Diff line number Diff line change 252
252
- [ 动态规划优化题目] ( ./Contents/10.Dynamic-Programming/11.DP-Optimization/04.DP-Optimization-List.md )
253
253
254
254
## 11. 附加内容
255
- ## [ 12. LeetCode 题解(已完成 703 道)] ( ./Contents/00.Introduction/04.Solutions-List.md )
255
+ ## [ 12. LeetCode 题解(已完成 704 道)] ( ./Contents/00.Introduction/04.Solutions-List.md )
You can’t perform that action at this time.
0 commit comments