首页 > 编程语言 > 详细

【剑指Offer】面试题03-数组中重复的数字

时间:2020-02-27 22:33:55      阅读:94      评论:0      收藏:0      [点我收藏+]

题目

给定一个二叉树和一个目标和,找到所有从根节点到叶子节点路径总和等于给定目标和的路径。

说明:?叶子节点是指没有子节点的节点。

示例:
给定如下二叉树,以及目标和?sum = 22,

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

返回:

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

本题同【剑指Offer】面试题34. 二叉树中和为某一值的路径

思路一:回溯

代码

class Solution {
public:
    vector<vector<int>> pathSum(TreeNode* root, int sum) {
        vector<vector<int>> res;
        if (root) {
            vector<int> path;
            find(root, sum, res, path);
        }
        return res;
    }

    void find(TreeNode *root, int sum, vector<vector<int>> &res, vector<int> &path) {
        sum -= root->val;
        path.push_back(root->val);
        if (sum == 0 && !root->left && !root->right) {
            res.push_back(path);
            return;
        }
        if (root->left) {
            find(root->left, sum, res, path);
            path.pop_back(); //回溯
        }
        if (root->right) {
            find(root->right, sum, res, path);
            path.pop_back(); //回溯
        }
    }
};

另一种写法

class Solution {
public:
    vector<vector<int>> pathSum(TreeNode* root, int sum) {
        vector<vector<int>> res;
        vector<int> path;
        if (!root) {
            return res;
        }
        find(root, sum, res, path);
        return res;
    }
    void find(TreeNode *root, int sum, vector<vector<int>> &res, vector<int> &path) {
        if (!root) {
            return;
        }
        path.push_back(root->val);
        if (!root->left && !root->right && sum == root->val) {
            res.push_back(path);
        }
        find(root->left, sum-root->val, res, path);
        find(root->right, sum-root->val, res, path);
        path.pop_back();
    }
};

【剑指Offer】面试题03-数组中重复的数字

原文:https://www.cnblogs.com/galaxy-hao/p/12374952.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!