博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
113. Path Sum II 输出每个具体路径
阅读量:5057 次
发布时间:2019-06-12

本文共 1767 字,大约阅读时间需要 5 分钟。

[抄题]:

Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given sum.

Note: A leaf is a node with no children.

Example:

Given the below binary tree and sum = 22,

5     / \    4   8   /   / \  11  13  4 /  \    / \7    2  5   1

Return:

[   [5,4,11,2],   [5,8,4,5]]

 

 [暴力解法]:

时间分析:

空间分析:

 [优化后]:

时间分析:

空间分析:

[奇葩输出条件]:

[奇葩corner case]:

[思维问题]:

不知道怎么添加元素:连arraylist都忘了我去

backtracing的add-dfs-remove也忘了

[英文数据结构或算法,为什么不用别的数据结构或算法]:

嵌套类型的右边也是对应的:

List<List<Integer>> result = new ArrayList<List<Integer>>();

[一句话思路]:

[输入量]:空: 正常情况:特大:特小:程序里处理到的特殊情况:异常情况(不合法不合理的输入):

[画图]:

[一刷]:

dfs中如果是累计求和,就要求有全局变量sum。所以不如curSum每次缩小,最后变成root.val。

[二刷]:

[三刷]:

[四刷]:

[五刷]:

  [五分钟肉眼debug的结果]:

[总结]:

为了避免全局变量,所以不如curSum每次缩小,最后变成root.val。

[复杂度]:Time complexity: O(n) Space complexity: O(n)

[算法思想:迭代/递归/分治/贪心]:

[关键模板化代码]:

[其他解法]:

[Follow Up]:

[LC给出的题目变变变]:

 [代码风格] :

 [是否头一次写此类driver funcion的代码] :

 [潜台词] :

 

class Solution {    public List
> pathSum(TreeNode root, int sum) { //initialization List
cur = new ArrayList<>(); List
> result = new ArrayList
>(); //corner case if (root == null) return result; dfs(root, sum, cur, result); return result; } public void dfs(TreeNode root, int curSum, List
cur, List
> result) { //corner case: root == null if (root == null) return ; //add to result cur.add(root.val); if (root.left == null && root.right == null && curSum == root.val) result.add(new ArrayList(cur)); else { //dfs dfs(root.left, curSum - root.val, cur, result); dfs(root.right, curSum - root.val, cur, result); } //remove last cur.remove(cur.size() - 1); }}
View Code

 

转载于:https://www.cnblogs.com/immiao0319/p/9515078.html

你可能感兴趣的文章
SVN使用教程总结
查看>>
SQL中varchar和nvarchar有什么区别?
查看>>
sublime Text 几款插件
查看>>
OpenCV矩阵运算总结
查看>>
Appium+python断言的使用
查看>>
码农干货系列【3】--割绳子(cut the rope)制作点滴:旋转(rotation)
查看>>
斜率DP题目
查看>>
疯狂java学习笔记之面向对象(七) - super关键字
查看>>
磁盘阵列
查看>>
leetcode-1-2
查看>>
linux 存取 I/O 内存
查看>>
时间同步
查看>>
通过Relect反射方法创建对象,获得对象的方法,输出对象信息
查看>>
Cognos报表打开参数
查看>>
126邮箱的格式
查看>>
ASP.NET MVC上传文件 未显示页面,因为请求实体过大。解方案
查看>>
怎样在 Mac 上打开 ~_Library 文件夹
查看>>
【转】emulator: ERROR: Could not load OpenGLES emulation library: lib64OpenglRender.so
查看>>
团队编程项目作业3-----模块开发过程
查看>>
站台查询api 据站台名称查询站台详细信息
查看>>