python二叉树是怎么来的(Python二叉树的镜像转换实现方法示例)
类别:脚本大全 浏览量:1250
时间:2022-01-14 02:47:51 python二叉树是怎么来的
Python二叉树的镜像转换实现方法示例本文实例讲述了python二叉树的镜像转换实现方法。分享给大家供大家参考,具体如下:
问题描述
操作给定的二叉树,将其变换为源二叉树的镜像。
思路描述
1. 代码比文字更直观
2. 文字描述:新建一个二叉树,利用递归法,将源二叉树上的左节点赋值到新二叉树的右节点,将源二叉树上的右节点赋值到新二叉树的左节点。
python代码
|
# 方式1:生成新的镜像二叉树 def getmirrorbst( self , root): if root = = none: return newtree = treenode(root.val) newtree.right = self .getmirrorbst(root.left) newtree.left = self .getmirrorbst(root.right) return newtree |
但是提交代码后,说通过率为0… 原来要求将原有的二叉树就地改成镜像二叉树…如此一来,代码就更简单了:因为交换根节点的左右子节点时,以左右子节点为根节点的左子树和右子树也会交换位置。最终的python代码如下:
|
# 方式2:改变给定的二叉树为镜像二叉树 def turntomirror( self , root): if root = = none: return root.right, root.left = root.left, root.right self .turntomirror(root.left) self .turntomirror(root.right) return root |
包含测试代码的最终代码如下:
|
class solution: # 给定一个二叉树,获得其镜像(轴对称)的镜像二叉树: # 方式1:生成新的镜像二叉树 def getmirrorbst( self , root): if root = = none: return newtree = treenode(root.val) newtree.right = self .getmirrorbst(root.left) newtree.left = self .getmirrorbst(root.right) return newtree # 方式2:改变给定的二叉树为镜像二叉树 def turntomirror( self , root): if root = = none: return root.right, root.left = root.left, root.right self .turntomirror(root.left) self .turntomirror(root.right) return root # 给定二叉树的前序遍历和中序遍历,获得该二叉树 def getbstwithpretin( self , pre, tin): if len (pre) = = 0 | len (tin) = = 0 : return none root = treenode(pre[ 0 ]) for order,item in enumerate (tin): if root .val = = item: root.left = self .getbstwithpretin(pre[ 1 :order + 1 ], tin[:order]) root.right = self .getbstwithpretin(pre[order + 1 :], tin[order + 1 :]) return root class treenode: def __init__( self , x): self .left = none self .right = none self .val = x if __name__ = = '__main__' : flag = "turntomirror" solution = solution() preorder_seq = [ 1 , 2 , 4 , 7 , 3 , 5 , 6 , 8 ] middleorder_seq = [ 4 , 7 , 2 , 1 , 5 , 3 , 8 , 6 ] treeroot1 = solution.getbstwithpretin(preorder_seq, middleorder_seq) if flag = = "mirrorbst" : newroot = solution.getmirrorbst(treeroot1) print (newroot) if flag = = "turntomirror" : solution.turntomirror(treeroot1) print (treeroot1) |
希望本文所述对大家python程序设计有所帮助。
原文链接:https://blog.csdn.net/u010005281/article/details/79473690
您可能感兴趣
- python对mysql数据分析(python使用adbapi实现MySQL数据库的异步存储)
- python计算1到10的阶乘的和(python计算阶乘和的方法1!+2!+3!+...+n!)
- centos7上安装python(centos6.5安装python3.7.1之后无法使用pip的解决方案)
- python菜单栏教程(Python3.5实现的三级菜单功能示例)
- python怎么在csv修改数据(python 编写输出到csv的操作)
- python中读取文件怎么操作(Python实现的读取文件内容并写入其他文件操作示例)
- python爬虫出租屋(python爬虫租房信息在地图上显示的方法)
- python包和模块管理(python的依赖管理的实现)
- python列表怎么赋值(详解Python列表赋值复制深拷贝及5种浅拷贝)
- python教程第126节(Python 学习教程之networkx)
- python函数大全详细(详解Python函数式编程—高阶函数)
- python自动处理图片(python制作图片缩略图)
- python中怎么实现登录程序(详解Python用户登录接口的方法)
- python字符处理的函数(Python字符串内置函数功能与用法总结)
- python中统计文本中单词数的代码(Linux上使用Python统计每天的键盘输入次数)
- pythonselenium自动化使用教程(selenium python 实现基本自动化测试的示例代码)
- 靳东领衔打造高精职场 新丽出品《精英律师》曝定妆照(靳东领衔打造高精职场)
- 靳东新剧《精英律师》定档,众星云集,这剧可追(靳东新剧精英律师定档)
- 精英律师 廖佳敏封印恋情曝光,顾婕马失前蹄 你个老不死的(廖佳敏封印恋情曝光)
- 以家人之名广受好评,剧情生动引起观众共鸣,演员张新成圈粉无数(以家人之名广受好评)
- 三兄妹感情再遇波折,人设接连崩塌 《以家人之名》剧情猜不透(三兄妹感情再遇波折)
- 《小敏家》金波想要复婚 这只是他圈套的第1步,更可恶的在后面(小敏家金波想要复婚)
热门推荐
- python表白代码演示(python3实现表白神器)
- html基本标签大全(HTML中meta标签及Keywords)
- SqlServer2016模糊匹配的三种方式及效率问题简析(SqlServer2016模糊匹配的三种方式及效率问题简析)
- python3d旋转特效(python实现小球弹跳效果)
- css渐变有几种(CSS 还能这样玩?奇思妙想渐变的艺术)
- python编程加密解密(python实现AES加密解密)
- laravel队列使用场景(Laravel使用RabbitMQ的方法示例)
- mysql百万数据分页查询优化方案(MySQL单表亿级数据分页怎么优化?)
- 云服务器最低配置可以吗(云服务器内存怎么选择?)
- sqlserver技术文档(sql server2016里面的json功能浅析)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9