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

Path Sum II 二叉树路径之和之二

时间:2014-10-22 07:36:22      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   ar   for   sp   数据   

Given a binary tree and a sum, find all root-to-leaf paths where each path‘s sum equals the given sum.

For example:
Given the below binary tree and sum = 22,

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

return

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

这道二叉树路径之和在之前的基础上又需要找出路径 (可以参见我之前的博客 http://www.cnblogs.com/grandyang/p/4036961.html),但是基本思想都一样,还是需要用广度优先搜索DFS,只不过数据结构相对复杂一点,需要用到二维的vector,而且每当DFS搜索到新节点时,都要保存该节点。而且每当找出一条路径之后,都将这个保存为一维vector的路径保存到最终结果二位vector中。并且,每当DFS搜索到子节点,发现不是路径和时,返回上一个结点时,需要把该节点从一维vector中移除。代码如下:

 

/**
 * Definition for binary tree
 * 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> > res;
        if (root == NULL) return res;
        
        vector<int> onePath;
        onePath.push_back(root->val);
        pathSum_DFS(root, sum, onePath, res);
        return res;
    }
    void pathSum_DFS(TreeNode *root, int sum, vector<int> &onePath, vector<vector<int> > &res) {
        if (root->left == NULL && root->right == NULL && root->val == sum) {
            res.push_back(onePath);
            return;
        }
        if (root->left) {
            onePath.push_back(root->left->val);
            pathSum_DFS(root->left, sum - root->val, onePath, res);
            onePath.pop_back();
        }
        if (root->right) {
            onePath.push_back(root->right->val);
            pathSum_DFS(root->right, sum - root->val, onePath, res);
            onePath.pop_back();
        }
    }
};

 

Path Sum II 二叉树路径之和之二

标签:style   blog   http   color   io   ar   for   sp   数据   

原文地址:http://www.cnblogs.com/grandyang/p/4042156.html

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