摘要: C#中实现链表,写出来练习下。首先实现链表中的节点: class LinkListNode { object value;//节点中存放的数据 public object Value { get { return this.value; } set { this.value = value; } } public LinkListNode(object value) { this.value = value; } ... 阅读全文
posted @ 2012-03-19 19:16 在路上—书生 阅读(549) 评论(0) 推荐(0) 编辑