摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;/***本实例演示二叉树的前序遍历 * **/namespace 前序遍历{ class Program { static void Main( string[ ] args ) { BinaryTree b = new BinaryTree( "ABCDE#F" ); b.ProOrder( b.Head ); Console.WriteLine( ); b.MidPrder( b.Head ); Consol 阅读全文
posted @ 2013-11-24 21:40 blog_yuan 阅读(502) 评论(0) 推荐(0) 编辑