C#实现的数据结构源码
using System; using QueueDs; namespace BinaryTreeDs { public class LinkBiTree { private Node head; //头引用 //头引用属性 public Node Head { get { return head; } set { head = value; } } //构造函数 public LinkBiTree()
下载地址
用户评论
数据结构的实现源码,有空可多看看。