404.左葉子之和
阿新 • • 發佈:2018-11-14
計算給定二叉樹的所有左葉子之和。
示例:
3 / \ 9 20 / \ 15 7 在這個二叉樹中,有兩個左葉子,分別是 9 和 15,所以返回 24。
/**
* 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 sumOfLeftLeaves(TreeNode* root) {
if (!root) return 0;
if (root->left && !root->left->left && !root->left->right) {
return root->left->val + sumOfLeftLeaves(root->right);
}
return sumOfLeftLeaves(root->left) + sumOfLeftLeaves(root->right);
}
};