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

二叉树中和为某一值的路径

时间:2017-08-31 09:41:59      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:push   indent   solution   turn   expect   mic   res   round   val   

 

输入一颗二叉树和一个整数,打印出二叉树中结点值的和为输入整数的所有路径。路径定义为从树的根结点开始往下一直到叶结点所经过的结点形成一条路径。

思路:深搜(DFS)

 

struct TreeNode {
    int val;
    struct TreeNode *left;
    struct TreeNode *right;
    TreeNode(int x) :
            val(x), left(NULL), right(NULL) {
    }
};

 

 

class Solution {
public:
    vector<vector<int>>res;
    vector<int> path;
    void DFS(TreeNode*root,int num)
    {
        if(root==NULL) return;
        path.push_back(root->val);
        if(!root->left&&!root->right&&num==root->val)//根节点的左右子树没有,且根节点的值等于num(所求的值),把向量path放入res中即可
            res.push_back(path);
        else//左右子树存在
        {
            if(root->left)
               DFS(root->left,num-root->val);
            if(root->right)
                DFS(root->right,num-root->val);
        }
        path.pop_back();//相当于回退 ,弹出去
    }
    vector<vector<int> > FindPath(TreeNode* root,int expectNumber) {
        DFS(root,expectNumber);
        return res;

    }
};

 

二叉树中和为某一值的路径

标签:push   indent   solution   turn   expect   mic   res   round   val   

原文地址:http://www.cnblogs.com/wft1990/p/7456375.html

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