LeetCode题解之 Sum of Left Leaves

Posted 山里的小勇子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode题解之 Sum of Left Leaves相关的知识,希望对你有一定的参考价值。

1、题目描述

2、问题分析

对于每个节点,如果其左子节点是叶子,则加上它的值,如果不是,递归,再对右子节点递归即可。

 

3、代码

 1 int sumOfLeftLeaves(TreeNode* root) {
 2         if (root == NULL)
 3             return 0;
 4         int ans = 0;
 5         if (root->left != NULL) {
 6             if (root->left->left == NULL && root->left->right == NULL) 
 7                 ans += root->left->val;
 8             else 
 9                 ans += sumOfLeftLeaves(root->left);
10         }
11         
12         ans += sumOfLeftLeaves(root->right);
13         
14         return ans;
15         
16     }

 

以上是关于LeetCode题解之 Sum of Left Leaves的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode 404. Sum of Left Leaves

LeetCode题解之Diameter of Binary Tree

LeetCode题解之 Subtree of Another Tree

#Leetcode# 404. Sum of Left Leaves

LeetCode 404. Sum of Left Leaves

leetcode?python Sum of Left Leaves