404. Sum of Left Leaves

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

解法一:Language-Java Time-O(n) Spaca-O(logn) Run Time-9ms
注:n代表树的节点数
时间复杂度:T(n) = 2T(n/2) 解得O(n)
空间复杂度:递归了logn层,每层都有个res,得O(logn)

public class Solution {
    public int sumOfLeftLeaves(TreeNode root) {
        int res = 0;
        //如果是一颗空树或者是一颗只有根节点的树
        if(root == null || (root.left == null && root.right == null))
        {
            return res;
        }
        if(root.left != null)
        {
            //如果是左叶子节点
            if(root.left.left == null && root.left.right == null)
            {
                res += root.left.val;
            }else
            {
                res += sumOfLeftLeaves(root.left);
            }
        }
        if(root.right != null)
        {
            if(root.right.left != null || root.right.right != null)
            {
                res += sumOfLeftLeaves(root.right);
            }
        }

        return res;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值