404. Sum of Left Leaves

来源:互联网 发布:网络集成与设计 编辑:程序博客网 时间:2024/06/05 16:57

题目描述:

Find the sum of all left leaves in a given binary tree.

Example:

    3   / \  9  20    /  \   15   7There are two left leaves in the binary tree, with values 9 and 15 respectively. Return 24.
解题思路:

这个题不断遍历整棵树找到左子树就可以了。时间复杂度O(n)

答案详解:

 /**

 * 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:
    int total = 0;
    void preorder(TreeNode* root)
    {
        if(root)
        {
            if( root->left==NULL && root->right==NULL )
                total = total + root->val;
            
            preorder(root->left);
            if(root->right!=NULL)
                if(root->right->left!=NULL || root->right->right !=NULL)
                    preorder(root->right);
        }
    }
    int sumOfLeftLeaves(TreeNode* root) {
        if(root&&root->right==NULL&&root->left==NULL)
            return 0;
        preorder(root);
        return total;
    }
};
原创粉丝点击