首页 > 编程语言 > 详细

python中创建和遍历二叉树

时间:2014-05-18 09:27:43      阅读:398      评论:0      收藏:0      [点我收藏+]

python创建和遍历二叉树,可以使用递归的方式,源代码如下:

#!/usr/bin/python 
class node():
	def __init__(self,k=None,l=None,r=None):
		self.key=k;
		self.left=l;
		self.right=r;

def create(root):
	a=raw_input(‘enter a key:‘);
	if a is ‘#‘:
		root=None;
	else:
		root=node(k=a);
		root.left=create(root.left);
		root.right=create(root.right);
	return root;

def preorder(root):      #前序遍历
	if root is None:
		return ;
	else :
		print root.key;
		preorder(root.left);
		preorder(root.right);

def inorder(root):     #中序遍历
	if root is None:
		return ;
	else:
		inorder(root.left);
		print root.key;
		inorder(root.right);

def postorder(root):   # 后序遍历
	if root is None:
		return ;
	else :
		postorder(root.left);
		postorder(root.right);
		print root.key;
		
root=None;     # 测试代码
root=create(root);
preorder(root);
inorder(root);
postorder(root);

运行程序,建立二叉树如图:

bubuko.com,布布扣


前序遍历结果为: a  b  c  d  e  f

中序遍历结果为:c  b  d  a  f  e 

后序遍历结果为:c  d  b  f  e  a 



python中创建和遍历二叉树,布布扣,bubuko.com

python中创建和遍历二叉树

原文:http://blog.csdn.net/u011608357/article/details/26075069

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