摘要: 二叉树算法,顺序确定的, 小的放在左边,大的放在右边。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... 阅读全文