Input: root = [1,2,3] Output: 25 Explanation: The root-to-leaf path1->2
represents the number12
. The root-to-leaf path1->3
represents the number13
. Therefore, sum = 12 + 13 =25
.
题目理解不难, 方法一也很固定。递归遍历整个树的node。
并且动态更新number数值。 val*10+root->val
当到达叶子节点时候把最新的val*10+root->val 加到结果的ret里面。
然后就这样遍历所有的叶子节点。
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
* };
*/
class Solution {
public:
int ret=0;
void help(TreeNode* root, int val) {
if(root->left == nullptr && root->right == nullptr) {
val = val*10 + root->val;
ret += val;
return;
}
if(root->left) {
help(root->left, val*10 + root->val);
}
if(root->right) {
help(root->right, val*10 + root->val);
}
return;
}
int sumNumbers(TreeNode* root) {
if(root == nullptr)
return 0;
help(root, 0);
return ret;
}
};
方法二: 可以用队列存储每一层的节点,然后出队列的同时push 进去新的子孩子。不过在push 子孩子进fifo之前,要更新子孩子的value: root *10 +孩子的数值。 一层层的做下去,到了叶子节点就是最后要的数值。
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
* };
*/
class Solution {
public:
int sumNumbers(TreeNode* root) {
queue<TreeNode*> myq;
int ret;
myq.push(root);
while(!myq.empty()) {
int size = myq.size();
while(size--) {
root=myq.front();
myq.pop();
if(root->left) {
root->left->val += root->val * 10;
myq.push(root->left);
}
if(root->right) {
root->right->val += root->val * 10;
myq.push(root->right);
}
if(root->left == nullptr && root->right == nullptr)
ret +=root->val;
}
}
return ret;
}
};