溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

leetCode 113. Path Sum II 二叉樹問題 | Medium

發(fā)布時(shí)間:2020-07-14 01:23:24 來源:網(wǎng)絡(luò) 閱讀:492 作者:313119992 欄目:編程語言

113. Path Sum II 

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]
]


思路:

先序遍歷,獲取目標(biāo)序列存到結(jié)果序列中。


代碼如下:

/**
 * 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;
        vector<TreeNode *> temp;
        
        DFS(root,result,temp,0,sum);
        return result;
    }
    
    void DFS(TreeNode* root,vector<vector<int>> &result,vector<TreeNode *> &tempNodePtr ,int curTotal , int sum)
    {
        if(!root)
            return;
        curTotal += root->val;
        tempNodePtr.push_back(root);
        vector<int> tempInt;
        if( !root->left && !root->right && curTotal == sum)
        {
            for(int i = 0 ; i < tempNodePtr.size(); i++)
            {
                tempInt.push_back(tempNodePtr[i]->val);
            }
            result.push_back(tempInt);
            tempInt.clear();
        }
        vector<TreeNode *> tempNodePtrLeft(tempNodePtr);
        vector<TreeNode *> tempNodePtrRight(tempNodePtr);
        
        DFS(root->left,result,tempNodePtrLeft,curTotal,sum);
        DFS(root->right,result,tempNodePtrRight,curTotal,sum);
    }
};


2016-08-07 13:52:07



向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI