有人知道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

全部评论
思路是对的,但不能在中间进行取模操作,中间有比大小的操作,取完模的话作比较的时候大的数就可能会变小
1 回复 分享
发布于 01-07 21:34 天津

相关推荐

10-14 23:01
已编辑
中国地质大学(武汉) Java
CUG芝士圈:虽然是网上的项目,但最好还是包装一下,然后现在大部分公司都在忙校招,十月底、十一月初会好找一些。最后,boss才沟通100家,别焦虑,我去年暑假找第一段实习的时候沟通了500➕才有面试,校友加油
点赞 评论 收藏
分享
11-01 20:03
已编辑
门头沟学院 算法工程师
Amazarashi66:这种也是幸存者偏差了,拿不到这个价的才是大多数
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务