摘要:
二叉树算法,顺序确定的, 小的放在左边,大的放在右边。using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace BineryTree{ class Program { static void Main(string[] args) { Tree tree = new Tree(55); tree.Insert(33); tree.Insert(3... 阅读全文
posted @ 2013-09-05 16:26
梅叶冬青
阅读(347)
评论(0)
推荐(0)
2013年9月5日