剑指 Offer 34. 二叉树中和为某一值的路径

该博客介绍了如何在给定的二叉树中找到所有节点值之和等于特定目标值的路径。提供了示例和相关链接,帮助理解问题并给出解决方案。
摘要由CSDN通过智能技术生成

剑指 Offer 34. 二叉树中和为某一值的路径

题目描述

输入一棵二叉树和一个整数,打印出二叉树中节点值的和为输入整数的所有路径。从树的根节点开始往下一直到叶节点所经过的节点形成一条路径。
示例:
给定如下二叉树,以及目标和 sum = 22

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

返回:

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

提示:

节点总数 <= 10000

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/er-cha-shu-zhong-he-wei-mou-yi-zhi-de-lu-jing-lcof

代码实现

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    vector<vector<int>> pathSum(TreeNode* root, int sum) {
        vector<vector<int>> result;
        if(!root) return result;
        vector<vector<int>> candidate = collectPath(root);       
        for(auto cit = candidate.begin(); cit != candidate.end(); cit++){
            int sumtmp = 0;
            for(auto ccit = (*cit).begin(); ccit != (*cit).end(); ccit++){
                sumtmp += (*ccit);
            }
            if(sum == sumtmp)
                result.push_back((*cit));
        }
        return result;
    }
    vector<vector<int>> collectPath(TreeNode* root) {
        vector<vector<int>> result;
        if((!root->left) && (!root->right)){
            vector<int> nodevec;
            nodevec.push_back(root->val);
            result.push_back(nodevec);
        }
        if(root->left){
            vector<vector<int>> leftPathes = collectPath(root->left);
            for(auto pait = leftPathes.begin(); pait != leftPathes.end(); pait++){
                (*pait).insert((*pait).begin(), root->val);
            result.push_back((*pait));
            }
        }
        if(root->right){
            vector<vector<int>> rightPathes = collectPath(root->right);
            for(auto pait = rightPathes.begin(); pait != rightPathes.end(); pait++){
                (*pait).insert((*pait).begin(), root->val);
                result.push_back((*pait));
            }
        }
        return result;
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值