概述
本文用python3实现二叉查找树的查找最小值、最大值的操作。
查找最小值
def get_min(self):
if self.root is None:
return None
node = self.root
while node.left:
node = node.left
return node.val
查找最大值
def get_max(self):
if self.root is None:
return None
node = self.root
while node.right:
node = node.right
return node.val
最后
以上就是开放小蝴蝶为你收集整理的python实现二叉查找数的查找最小值、最大值操作的全部内容,希望文章能够帮你解决python实现二叉查找数的查找最小值、最大值操作所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复