摘要: 56. 合并区间 题目链接:https://leetcode.cn/problems/merge-intervals/ 题目难度:中等 文章讲解:https://programmercarl.com/0056.合并区间.html 视频讲解:https://www.bilibili.com/video 阅读全文
posted @ 2024-08-02 15:41 云雀AC了一整天 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 452. 用最少数量的箭引爆气球 题目链接:https://leetcode.cn/problems/minimum-number-of-arrows-to-burst-balloons/ 题目难度:中等 文章讲解:https://programmercarl.com/0452.用最少数量的箭引爆气 阅读全文
posted @ 2024-08-01 22:05 云雀AC了一整天 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 134. 加油站 题目链接:https://leetcode.cn/problems/gas-station/ 题目难度:中等 文章讲解:https://programmercarl.com/0134.加油站.html 视频讲解:https://www.bilibili.com/video/BV1j 阅读全文
posted @ 2024-08-01 20:48 云雀AC了一整天 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 122. 买卖股票的最佳时机II 题目链接:https://leetcode.cn/problems/best-time-to-buy-and-sell-stock-ii/ 题目难度:中等 文章讲解:https://programmercarl.com/0122.买卖股票的最佳时机II.html 视 阅读全文
posted @ 2024-08-01 15:08 云雀AC了一整天 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 455. 分发饼干 题目链接:https://leetcode.cn/problems/assign-cookies/ 题目难度:简单 文章讲解:https://programmercarl.com/0455.分发饼干.html 视频讲解:https://www.bilibili.com/video 阅读全文
posted @ 2024-07-29 16:19 云雀AC了一整天 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 491. 非递减子序列 题目链接:https://leetcode.cn/problems/non-decreasing-subsequences/ 题目难度:中等 文章讲解:https://programmercarl.com/0491.递增子序列.html 视频讲解:https://www.bi 阅读全文
posted @ 2024-07-27 10:20 云雀AC了一整天 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 93. 复原 IP 地址 题目链接:https://leetcode.cn/problems/restore-ip-addresses/ 题目难度:中等 文章讲解:https://programmercarl.com/0093.复原IP地址.html 视频讲解:https://www.bilibil 阅读全文
posted @ 2024-07-26 16:26 云雀AC了一整天 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 39. 组合总和 题目链接:https://leetcode.cn/problems/combination-sum/ 题目难度:中等 文章讲解:https://programmercarl.com/0039.组合总和.html 视频讲解:https://www.bilibili.com/video 阅读全文
posted @ 2024-07-25 15:27 云雀AC了一整天 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 回溯算法模板 void backtracking(参数) { if (终止条件) { 存放结果; return; } for (选择:本层集合中元素(树中节点孩子的数量就是集合的大小)) { 处理节点; backtracking(路径,选择列表); // 递归 回溯,撤销处理结果 } } 77. 组 阅读全文
posted @ 2024-07-24 15:53 云雀AC了一整天 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 669. 修剪二叉搜索树 题目链接:https://leetcode.cn/problems/trim-a-binary-search-tree/ 题目难度:中等 文章讲解:https://programmercarl.com/0669.修剪二叉搜索树.html 视频讲解:https://www.b 阅读全文
posted @ 2024-07-23 09:09 云雀AC了一整天 阅读(19) 评论(0) 推荐(0) 编辑