剑指Offer:24-二叉树中和为某一值的路径

题目描述

输入一颗二叉树的根节点和一个整数,打印出二叉树中结点值的和为输入整数的所有路径。路径定义为从树的根结点开始往下一直到叶结点所经过的结点形成一条路径。(注意: 在返回值的list中,数组长度大的数组靠前)

思路

实现

/*
struct TreeNode {
    int val;
    struct TreeNode *left;
    struct TreeNode *right;
    TreeNode(int x) :
            val(x), left(NULL), right(NULL) {
    }
};*/
class Solution {
public:
    vector > FindPath(TreeNode* root,int expectNumber) {
        if(!root)
            return res;
        
        tmp.push_back(root->val);
        if(!root->left && !root->right && root->val == expectNumber)
            res.push_back(tmp);
        
        FindPath(root->left, expectNumber - root->val);
        FindPath(root->right, expectNumber - root->val);
        tmp.pop_back();
        return res;
    }
private:
    vector> res;
    vector tmp;
};

你可能感兴趣的:(剑指Offer:24-二叉树中和为某一值的路径)