当前位置:网站首页>LeetCode 练习——113. 路径总和 II
LeetCode 练习——113. 路径总和 II
2022-07-07 07:29:00 【SK_Jaco】
1.题目描述
113. 路径总和 II
给你二叉树的根节点 root 和一个整数目标和 targetSum ,找出所有 从根节点到叶子节点 路径总和等于给定目标和的路径。
叶子节点 是指没有子节点的节点。
示例 1:
输入:root = [5,4,8,11,null,13,4,7,2,null,null,5,1], targetSum = 22
输出:[[5,4,11,2],[5,8,4,5]]
示例 2:
输入:root = [1,2,3], targetSum = 5
输出:[]
示例 3:
输入:root = [1,2], targetSum = 0
输出:[]
2.解题思路与代码
2.1 解题思路
这道题求从根节点到叶节点的上和为目标的路径,可以使用前序遍历进行处理。当节点不为叶节点时,将当前节点放入路径列表中,并且目标值减去当前节点值;如果当前节点是叶节点时,就需要判断 target 是否为 0,如果是0,那么就把当前路径放入结果列表中;如果不是0,则返回。在处理完左节点和右节点之后需要将当前节点从路径列表中删除。以题目示例 1 为例进行图解:
首先从根节点开始向下遍历二叉树,将当前节点放入路径列表中,同时 target 减去当前节点值。
当遍历到叶节点时,判断 target 是否为 0,此时不为 0,因此这条路径不满足要求,返回上一节点。
返回同时需要将当前节点从路径列表中移除,然后继续向下到 2 这个节点。此时 target 等于 0,满足要求,将 [5, 4, 11, 2] 这条路径放入结果中。重复上面步骤继续遍历知道结束为止。
2.2 代码
class Solution {
List<List<Integer>> ans = new ArrayList<>();
public List<List<Integer>> pathSum(TreeNode root, int target) {
if (root == null) {
return ans;
}
process(root, new ArrayList<>(), target);
return ans;
}
public void process(TreeNode root, List<Integer> tmp, int target) {
if (root == null) {
return;
}
tmp.add(root.val);
target -= root.val;
if (root.left == null && root.right == null && target == 0){
// 如过当前节点为叶节点,并且 target 等于 0,将路径放入结果列表
ans.add(new ArrayList<>(tmp));
}
process(root.left, tmp, target);
process(root.right, tmp, target);
// 处理完左右节点之后将当前节点从路径列表中移除
tmp.remove(tmp.size() - 1);
}
}
2.3 测试结果
通过测试
3.总结
- 使用前序遍历进行解答
- 每个节点在处理完左右节点后需要将当前节点移出路径列表
边栏推荐
猜你喜欢
Basic chapter: take you through notes
[untitled]
The applet realizes multi-level page switching back and forth, and supports sliding and clicking operations
Arcgis操作: 批量修改属性表
小程序滑动、点击切换简洁UI
企业实战|复杂业务关系下的银行业运维指标体系建设
字节跳动 Kitex 在森马电商场景的落地实践
arcgis操作:dwg数据转为shp数据
STM32中AHB总线_APB2总线_APB1总线这些是什么
Google colab loads Google drive (Google drive is used in Google colab)
随机推荐
能源路由器入门必读:面向能源互联网的架构和功能
中国首款电音音频类“山野电音”数藏发售来了!
The new activity of "the arrival of twelve constellations and goddesses" was launched
The Himalaya web version will pop up after each pause. It is recommended to download the client solution
Interface test
C# 初始化程序时查看初始化到哪里了示例
Gym - 102219j kitchen plates (violent or topological sequence)
Gym - 102219J Kitchen Plates(暴力或拓扑序列)
Software modeling and analysis
CDZSC_ 2022 winter vacation personal training match level 21 (1)
ES6中的函數進階學習
[untitled]
XML配置文件解析与建模
Pit using BigDecimal
The physical meaning of imaginary number J
小程序弹出半角遮罩层
MCU与MPU的区别
Google colab loads Google drive (Google drive is used in Google colab)
ES类和对象、原型
C socke server, client, UDP