python 将有序数组转换为二叉树的方法


Posted in Python onMarch 26, 2019

题目:将[0,1,2,3,4,5,6,7,8,9,10]存储到二叉树,原数组有序,转换为二叉排序树。

二叉排序树的特点:当前节点的左子树上的所有节点都小于该节点,右子树上的所有节点都小于该节点。

二叉排序也称为二叉查找树。

我的实现思路:

取有序数组的中间节点作为根节点,将数组分为左右两个部分,对左右两个子数组做相同的操作,递归的实现。

图示:

python 将有序数组转换为二叉树的方法

1

python 将有序数组转换为二叉树的方法

2

python 将有序数组转换为二叉树的方法

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)

输出:

python 将有序数组转换为二叉树的方法

根据这三种遍历结果可以判断出二叉树的结构,结果和前面的是一样的,代码如下:

#定义二叉树结点类型
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)

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
合并Excel工作薄中成绩表的VBA代码,非常适合教育一线的朋友
Apr 09 Python
Python编码时应该注意的几个情况
Mar 04 Python
Python代码的打包与发布详解
Jul 30 Python
在Django框架中设置语言偏好的教程
Jul 27 Python
Python基础篇之初识Python必看攻略
Jun 23 Python
用tensorflow构建线性回归模型的示例代码
Mar 05 Python
Python生成器定义与简单用法实例分析
Apr 30 Python
python+influxdb+shell编写区域网络状况表
Jul 27 Python
python lambda表达式在sort函数中的使用详解
Aug 28 Python
python中的subprocess.Popen()使用详解
Dec 25 Python
python实现按键精灵找色点击功能教程,使用pywin32和Pillow库
Jun 04 Python
详解python中的lambda与sorted函数
Sep 04 Python
浅谈Python爬虫基本套路
Mar 25 #Python
我用Python抓取了7000 多本电子书案例详解
Mar 25 #Python
详解python:time模块用法
Mar 25 #Python
Python minidom模块用法示例【DOM写入和解析XML】
Mar 25 #Python
Python实例方法、类方法、静态方法的区别与作用详解
Mar 25 #Python
详解Python装饰器
Mar 25 #Python
详解用python自制微信机器人,定时发送天气预报
Mar 25 #Python
You might like
php预定义常量
2006/12/25 PHP
关于PHP模板Smarty的初级使用方法以及心得分享
2013/06/21 PHP
如何取得中文字符串中出现次数最多的子串
2013/08/08 PHP
ThinkPHP中自定义目录结构的设置方法
2014/08/15 PHP
smarty内置函数foreach用法实例
2015/01/22 PHP
thinkphp关于简单的权限判定方法
2017/04/03 PHP
List Information About the Binary Files Used by an Application
2007/06/18 Javascript
分享别人写的一个小型js框架
2007/08/13 Javascript
通过修改referer下载文件的方法
2008/05/11 Javascript
基于JQuery的密码强度验证代码
2010/03/01 Javascript
JavaScript替换当前页面的方法
2015/04/03 Javascript
jQuery实现延迟跳转的方法
2015/06/05 Javascript
js动态生成Html元素实现Post操作(createElement)
2015/09/14 Javascript
jQuery中的ajax async同步和异步详解
2015/09/29 Javascript
javascript cookie用法基础教程(概念,设置,读取及删除)
2016/09/20 Javascript
Angular2  NgModule 模块详解
2016/10/19 Javascript
浅谈js中几种实用的跨域方法原理详解
2016/12/02 Javascript
详谈javascript精度问题与调整
2017/07/08 Javascript
vue 通过base64实现图片下载功能
2020/12/19 Vue.js
跟老齐学Python之list和str比较
2014/09/20 Python
玩转python爬虫之正则表达式
2016/02/17 Python
django进阶之cookie和session的使用示例
2018/08/17 Python
python 获取毫秒数,计算调用时长的方法
2019/02/20 Python
python range实例用法分享
2020/02/06 Python
Python实现壁纸下载与轮换
2020/10/19 Python
Python实现冒泡排序算法的完整实例
2020/11/04 Python
使用CSS3中的calc()属性来以算式表达尺寸数值
2016/06/06 HTML / CSS
Canvas制作的下雨动画的示例
2018/03/06 HTML / CSS
使用canvas实现黑客帝国数字雨效果
2020/01/02 HTML / CSS
STUBHUB日本:购买和出售全球活动门票
2018/07/01 全球购物
热爱祖国演讲稿
2014/05/04 职场文书
销售代理协议书
2014/09/30 职场文书
2014旅游局党组书记党建工作汇报材料
2014/11/02 职场文书
党章学习心得体会2016
2016/01/14 职场文书
浅谈pytorch中stack和cat的及to_tensor的坑
2021/05/20 Python
Python torch.flatten()函数案例详解
2021/08/30 Python