2016-11-12 00:31:03 +08:00

72 lines
1.8 KiB
C++

// Source : https://leetcode.com/problems/sum-of-left-leaves/
// Author : Hao Chen
// Date : 2016-11-12
/***************************************************************************************
*
* Find the sum of all left leaves in a given binary tree.
*
* Example:
*
* 3
* / \
* 9 20
* / \
* 15 7
*
* There are two left leaves in the binary tree, with values 9 and 15 respectively.
* Return 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:
void sumOfLeftLeaves_recursion_v1(TreeNode* root, int& result) {
if (root == NULL ) {
return;
}
if (root->left && root->left->left == NULL && root->left->right == NULL) {
result += root->left->val;
}
sumOfLeftLeaves_recursion_v1(root->left, result);
sumOfLeftLeaves_recursion_v1(root->right, result);
}
int sumOfLeftLeaves_recursion_v2(TreeNode* root) {
if (root == NULL ) {
return 0;
}
int result = 0;
if (root->left && root->left->left == NULL && root->left->right == NULL) {
result = root->left->val;
}
result += sumOfLeftLeaves_recursion_v2(root->left) + sumOfLeftLeaves_recursion_v2(root->right);
return result;
}
int sumOfLeftLeaves(TreeNode* root) {
srand(time(NULL));
if (rand()%2) {
int result = 0;
sumOfLeftLeaves_recursion_v1(root, result);
return result;
} else {
return sumOfLeftLeaves_recursion_v2(root);
}
}
};