11 2013 档案
摘要: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
阅读全文

浙公网安备 33010602011771号