首页 > 编程语言 > 详细

python重建二叉树

时间:2019-02-07 23:15:34      阅读:220      评论:0      收藏:0      [点我收藏+]

 

# -*- coding:utf-8 -*-
# class TreeNode:
#     def __init__(self, x):
#         self.val = x
#         self.left = None
#         self.right = None
 
def contree(pre,tin):
    if len(tin)==1 and len(pre)==1:
        return TreeNode(tin[0])
    if pre==[] and tin==[]:
        return None
     
    for i in range(0,len(tin)):
        if tin[i]==pre[0]:
            print pre[1:1+i]
            print pre[1+i:]
            lt=contree(pre[1:1+i],tin[:i])
            rt=contree(pre[i+1:],tin[i+1:])
            tempnode=TreeNode(tin[i])
            tempnode.left=lt
            tempnode.right=rt
            return tempnode
 
class Solution:
    # 返回构造的TreeNode根节点
    def reConstructBinaryTree(self, pre, tin):
        # write code here
        return contree(pre,tin)

 

python重建二叉树

原文:https://www.cnblogs.com/zealousness/p/10355688.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!