1. 首页
  2. 服务器应用
  3. FTP
  4. C#实现的数据结构源码

C#实现的数据结构源码

上传者: 2020-09-01 19:39:16上传 RAR文件 91.22KB 热度 8次
using System; using QueueDs; namespace BinaryTreeDs { public class LinkBiTree { private Node head; //头引用 //头引用属性 public Node Head { get { return head; } set { head = value; } } //构造函数 public LinkBiTree()
用户评论
码姐姐匿名网友 2020-09-01 19:39:16

数据结构的实现源码,有空可多看看。