KY11 二叉树遍历

KY11 二叉树遍历

法一:

import sys
position = 0
class TreeNode():  
    def __init__(self, data=-1):
        self.data = data
        self.leftChild = None
        self.rightChild = None
    def InOrder(self):
        if self.leftChild != None:
            self.leftChild.InOrder()
        print(self.data,end=' ')
        if self.rightChild != None:
            self.rightChild.InOrder()
    def getTree(self, line):
        self.data = line[0]
        if line[1:] == "##":
            self.leftChild = None
            self.rightChild = None
        else:
            line = line[1:]
            cntData, cntSharp = 0, 0
            for c in line:
                if c == "#":
                    cntSharp += 1
                else:
                    cntData += 1
                if cntSharp-1 == cntData:
                    break
            leftInfo, rightInfo = line[:cntSharp+cntData],line[cntSharp+cntData:]
            self.leftChild, self.rightChild = TreeNode(), TreeNode()
            if leftInfo == '#':
                self.leftChild = None
            else:
                self.leftChild.getTree(leftInfo)
            if rightInfo == "#":
                self.rightChild = None
            else:
                self.rightChild.getTree(rightInfo)
def buildTree(line): 
    global position   
    if line[position]=='#':
        position += 1
        return None
    else:
        data = line[position]
        position += 1
        root = TreeNode(data)
        root.leftChild = buildTree(line)
        root.rightChild = buildTree(line)
        return root

for line in sys.stdin:
    position = 0
    line = line.strip()
    # print("开始创建树...")
    root = buildTree(line)
    # print("完成创建树...")
    root.InOrder()

法二:

# 总节点数N=N0+N1+N2
# 总边数L=N1+2*N2
# 总边数+1=总节点数
# "#"的数量=2*N0+N1
# 推导出: "#"的数量=总结点数+1,
# 由此关系可以分出左子树部分和右子树部分

import sys
class TreeNode():  
    def __init__(self, data=-1):
        self.data = data
        self.leftChild = None
        self.rightChild = None
    def InOrder(self):
        if self.leftChild != None:
            self.leftChild.InOrder()
        print(self.data,end=' ')
        if self.rightChild != None:
            self.rightChild.InOrder()
    def getTree(self, line):
        self.data = line[0]
        if line[1:] == "##":
            self.leftChild = None
            self.rightChild = None
        else:
            line = line[1:]
            cntData, cntSharp = 0, 0
            for c in line:
                if c == "#":
                    cntSharp += 1
                else:
                    cntData += 1
                if cntSharp-1 == cntData:
                    break
            leftInfo, rightInfo = line[:cntSharp+cntData],line[cntSharp+cntData:]
            self.leftChild, self.rightChild = TreeNode(), TreeNode()
            if leftInfo == '#':
                self.leftChild = None
            else:
                self.leftChild.getTree(leftInfo)
            if rightInfo == "#":
                self.rightChild = None
            else:
                self.rightChild.getTree(rightInfo)
        
for line in sys.stdin:
    line = line.strip()
    root = TreeNode()
    # print("开始创建树...")
    root.getTree(line)  # 包括根节点在内的先序访问序列
    # print("完成创建树...")
    root.InOrder()
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值