我是靠谱客的博主 外向红酒,最近开发中收集的这篇文章主要介绍leetcode 671 Second Minimum Node In a Binary Tree,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
Java
class Solution {
public int findSecondMinimumValue(TreeNode root) {
if(root==null) return -1;
if(root.left==null && root.right==null) return -1;
int left=root.left.val;
int right=root.right.val;
if(root.left.val==root.val){
left = findSecondMinimumValue(root.left);
}
if(root.right.val==root.val){
right = findSecondMinimumValue(root.right);
}
if(left!=-1&&right!=-1) return Math.min(left,right);
else if(left==-1) return right;
else return left;
}
}
Python
class Solution:
def findSecondMinimumValue(self, root):
"""
:type root: TreeNode
:rtype: int
"""
if not root:
return -1
if not root.left and not root.right:
return -1
left,right=root.left.val,root.right.val
if root.left.val==root.val:
left=self.findSecondMinimumValue(root.left)
if root.right.val==root.val:
right=self.findSecondMinimumValue(root.right)
if left==-1 or right==-1:
return -left*right
else:
return min(left,right)
最后
以上就是外向红酒为你收集整理的leetcode 671 Second Minimum Node In a Binary Tree的全部内容,希望文章能够帮你解决leetcode 671 Second Minimum Node In a Binary Tree所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复