python 二叉树的深度遍历(python 将有序数组转换为二叉树的方法)
类别:脚本大全 浏览量:1366
时间:2021-10-27 10:49:31 python 二叉树的深度遍历
python 将有序数组转换为二叉树的方法题目:将[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) |
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持开心学习网。
原文链接:https://www.jianshu.com/p/b7492d68a39f
您可能感兴趣
- python钉钉机器人(python钉钉机器人运维脚本监控实例)
- python控制流实例(如何用C代码给Python写扩展库Cython)
- python类继承和封装(Python面向对象程序设计类的封装与继承用法示例)
- python 文本文件读取方法(Python逐行读取文件中内容的简单方法)
- python转换doc到pdf(利用python将图片版PDF转文字版PDF)
- python中list用法(Python数据类型之List列表实例详解)
- python表白代码演示(python3实现表白神器)
- python全局变量设置(Python3.5局部变量与全局变量作用域实例分析)
- python编写pygame游戏怎么打包(python使用pygame模块实现坦克大战游戏)
- python怎么从数组中取内容(python调用c++ ctype list传数组或者返回数组的方法)
- 使用python编辑个人名片(python实现名片管理系统项目)
- python中mod函数的使用方法(详解Python3中ceil函数用法)
- python plot绘图(python使用Plotly绘图工具绘制气泡图)
- python菜单栏教程(Python3.5实现的三级菜单功能示例)
- jupyter如何编写python(windows系统中Python多版本与jupyter notebook使用虚拟环境的过程)
- python表格导出为图片(python生成带有表格的图片实例)
- 前《iLOOK》时装总监 《快乐大本营》御用造型师上线(快乐大本营御用造型师上线)
- 释小龙晒杀青照片 多重身份惹观众期待(释小龙晒杀青照片)
- 《九牛之人降魔传》开机 演员祁高坤化身九牛之人除魔卫道(九牛之人降魔传开机)
- 王铲铲的致富之路无限金币卡法攻略教学(王铲铲的致富之路无限金币卡法攻略教学)
- 文明6金币太少怎么办 文明6无限刷钱教程(文明6金币太少怎么办)
- 开国中将,王牌军63军首任政委,两个连襟一个上将一个少将传为佳话(王牌军63军首任政委)
热门推荐
- python面向对象的介绍(Python面向对象思想与应用入门教程类与对象)
- 云服务器哪个公司适合做(企业云服务器适用企业有哪些?)
- javascript如何操作文档元素(JavaScript操作元素实例大全)
- thinkphp框架案例(thinkphp5.1框架容器与依赖注入实例分析)
- python dict 操作(Python中dict和set的用法讲解)
- docker容器内服务怎么启动(docker部署confluence的完整步骤)
- 数据库docker技术(总结Docker不适合部署数据库的7大原因)
- python的opencv图片识别(OpenCV-Python 摄像头实时检测人脸代码实例)
- 怎么搭建apache服务器(Apache配置多个站点的方法)
- javascript动作事件有哪些(JavaScript之事件循环案例讲解)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9