圆月山庄资源网 Design By www.vgjia.com
题目:将[0,1,2,3,4,5,6,7,8,9,10]存储到二叉树,原数组有序,转换为二叉排序树。
二叉排序树的特点:当前节点的左子树上的所有节点都小于该节点,右子树上的所有节点都小于该节点。
二叉排序也称为二叉查找树。
我的实现思路:
取有序数组的中间节点作为根节点,将数组分为左右两个部分,对左右两个子数组做相同的操作,递归的实现。
图示:
1
2
3
代码实现:
def array_to_bitree(array): #判断arr是否为空 if len(array)==0: return BiTNode(array[0]) mid=len(array)//2 # 有序数组的中间元素的下标 #print(mid) #start=0 # 数组第一个元素的下标 #end=-1 # 数组最后一个元素的下标 if len(array)>0: #将中间元素作为二叉树的根 root=BiTNode(array[mid]) #如果左边的元素个数不为零,则递归调用函数,生成左子树 if len(array[:mid])>0: root.left_child = arrayToBiTree(array[:mid]) #如果右边的元素个数不为零,则递归调用函数,生成左子树 if len(array[mid+1:])>0: root.right_child = arrayToBiTree(array[mid+1:]) return root
我们调用前面写的三种遍历方法看一看,我们构造的树是否正确:
#将[0,1,2,3,4,5,6,7,8,9,10]存储到二叉树 if __name__ == '__main__': #先构造一个有序数组、链表 arr=[] for i in range(10): arr.append(i) print(arr) #调用函数 BT=arrayToBiTree(arr) #前序遍历二叉树 print("前序") print_tree_pre_order(BT) # 中序遍历二叉树 print("中序") print_tree_mid_order(BT) # 后序遍历二叉树 print("后序") print_tree_after_order(BT)
输出:
根据这三种遍历结果可以判断出二叉树的结构,结果和前面的是一样的,代码如下:
#定义二叉树结点类型 class BiTNode: """docstring for BiTNode""" def __init__(self,arg): self.data = arg self.left_child = None self.right_child = None #前序遍历 def print_tree_pre_order(root): #先判断二叉树是否为空 #if root.left_child is None and root.right_child is None: if root is None: return root #先根 print(root.data) #再左 if root.left_child is not None: print_tree_pre_order(root.left_child) #再右 if root.right_child is not None: print_tree_pre_order(root.right_child) #中序遍历二叉树 def print_tree_mid_order(root): #先判断二叉树是否为空,当左右节点都为空时 if root is None: return #中序遍历 左根右 #遍历左子树 if root.left_child is not None: print_tree_mid_order(root.left_child) #遍历根节点 print(root.data) #遍历右子树 if root.right_child is not None: print_tree_mid_order(root.right_child) #后序遍历 def print_tree_after_order(root): #先判断二叉树是否为空 if root is None: return root #再左 if root.left_child is not None: print_tree_after_order(root.left_child) #再右 if root.right_child is not None: print_tree_after_order(root.right_child) #先根 print(root.data) def array_to_bitree(array): #判断arr是否为空 if len(array)==0: return BiTNode(array[0]) mid=len(array)//2 # 有序数组的中间元素的下标 #print(mid) #start=0 # 数组第一个元素的下标 #end=-1 # 数组最后一个元素的下标 if len(array)>0: #将中间元素作为二叉树的根 root=BiTNode(array[mid]) #如果左边的元素个数不为零,则递归调用函数,生成左子树 if len(array[:mid])>0: root.left_child = array_to_bitree(array[:mid]) #如果右边的元素个数不为零,则递归调用函数,生成左子树 if len(array[mid+1:])>0: root.right_child = array_to_bitree(array[mid+1:]) return root #将[0,1,2,3,4,5,6,7,8,9,10]存储到二叉树 if __name__ == '__main__': #先构造一个有序数组、链表 arr=[] for i in range(9): arr.append(i) print(arr) #调用函数 BT=array_to_bitree(arr) #前序遍历二叉树 print("前序") print_tree_pre_order(BT) # 中序遍历二叉树 print("中序") print_tree_mid_order(BT) # 后序遍历二叉树 print("后序") print_tree_after_order(BT)
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
圆月山庄资源网 Design By www.vgjia.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
圆月山庄资源网 Design By www.vgjia.com
暂无评论...
更新日志
2024年11月06日
2024年11月06日
- 雨林唱片《赏》新曲+精选集SACD版[ISO][2.3G]
- 罗大佑与OK男女合唱团.1995-再会吧!素兰【音乐工厂】【WAV+CUE】
- 草蜢.1993-宝贝对不起(国)【宝丽金】【WAV+CUE】
- 杨培安.2009-抒·情(EP)【擎天娱乐】【WAV+CUE】
- 周慧敏《EndlessDream》[WAV+CUE]
- 彭芳《纯色角3》2007[WAV+CUE]
- 江志丰2008-今生为你[豪记][WAV+CUE]
- 罗大佑1994《恋曲2000》音乐工厂[WAV+CUE][1G]
- 群星《一首歌一个故事》赵英俊某些作品重唱企划[FLAC分轨][1G]
- 群星《网易云英文歌曲播放量TOP100》[MP3][1G]
- 方大同.2024-梦想家TheDreamer【赋音乐】【FLAC分轨】
- 李慧珍.2007-爱死了【华谊兄弟】【WAV+CUE】
- 王大文.2019-国际太空站【环球】【FLAC分轨】
- 群星《2022超好听的十倍音质网络歌曲(163)》U盘音乐[WAV分轨][1.1G]
- 童丽《啼笑姻缘》头版限量编号24K金碟[低速原抓WAV+CUE][1.1G]