码迷,mamicode.com
首页 > 其他好文 > 详细

[leetcode] 113. 路径总和 II

时间:2018-11-06 22:34:58      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:find   基础上   www   amp   tps   return   public   bin   esc   

113. 路径总和 II

这题跟上个题的区别112. 路径总和,需要保存下路径,且有可能出现多条路径。

在前一个题的基础上加上回溯即可

class Solution {
    public List<List<Integer>> pathSum(TreeNode root, int sum) {
        List<List<Integer>> ansList = new ArrayList<>();
        if (root == null) return ansList;
        List<Integer> curList = new ArrayList<>();

        findPath(root, sum, curList, ansList);

        return ansList;
    }

    private void findPath(TreeNode root, int sum, List<Integer> curList, List<List<Integer>> ansList) {
        if (root == null) return;
        curList.add(root.val);
        if (root.left == null && root.right == null && sum == root.val) {
            List<Integer> tmp = new ArrayList<>(curList);
            ansList.add(tmp);
        } else {
            findPath(root.left, sum - root.val, curList, ansList);
            findPath(root.right, sum - root.val, curList, ansList);
        }
        curList.remove(curList.size() - 1);
    }
}

[leetcode] 113. 路径总和 II

标签:find   基础上   www   amp   tps   return   public   bin   esc   

原文地址:https://www.cnblogs.com/acbingo/p/9918325.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!