Java:递归计算二叉搜索树中的偶数值
我需要找出二叉树中包含多少个偶数值。
这是我的代码。
private int countEven(BSTNode root){
if ((root == null)|| (root.value%2==1))
return 0;
return 1+ countEven(root.left) + countEven(root.right);
}
这是我刚刚编码的,因为我没有办法测试它。我目前无法对其进行测试,但非常需要答案。 非常感谢任何帮助。
I need to find out how many even values are contained in a binary tree.
this is my code.
private int countEven(BSTNode root){
if ((root == null)|| (root.value%2==1))
return 0;
return 1+ countEven(root.left) + countEven(root.right);
}
this i just coded as i do not have a way to test this out. I'm not able to test it out at the moment but need an answer so badly.
any help is deeply appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果存在奇数值的节点包含偶数值的子节点,则这些子节点将不会计入您的代码中。下面的小增强。
If there is an node with an odd value containing subnodes with even values, the subnodes will not be counted in your code. Small enhancement below.