当前位置:Gxlcms > Python > python实现二叉树的中序遍历

python实现二叉树的中序遍历

时间:2021-07-01 10:21:17 帮助过:276人阅读

#!/usr/bin/env python

# coding=utf-8

# inorderBL.py

import stdinInput

def inorder(arrays,arraysize,currentP):

if(2*currentP+1<arraysize):

inorder(arrays,arraysize,2*currentP+1)

print arrays[currentP]

if(2*currentP+2<arraysize):

inorder(arrays,arraysize,2*currentP+2)


if __name__=='__main__':


stdinInput.stdinInput()

inorder(stdinInput.intsortArrays,len(stdinInput.intsortArrays),0)

人气教程排行