有人知道B题这个思路为什么不对吗?
/**
* struct TreeNode {
* int val;
* struct TreeNode *left;
* struct TreeNode *right;
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* };
*/
class Solution {
public:
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param tree TreeNode类
* @return int整型
*/
const int mod = 1e9 + 7;
int dfs(TreeNode* t)
{
if(t == 0)return 0;
else{
int res = 0;
int cnt1 = dfs(t->left) % mod;
int cnt2 = dfs(t->right) % mod;
res = (max(cnt1, cnt2) * 2 % mod + 1) % mod;
return res;
}
}
int getTreeSum(TreeNode* tree) {
// write code here
int res = 0;
res = dfs(tree) % mod;
return res;
}
};v