09 2009 档案

摘要:public class Node<T> { public T Data { get; set; } public Node<T> Next { get; set; } public void Append(Node<T> node) { if (this.Next == null) { this.Next = node; } else { Next.Appen... 阅读全文
posted @ 2009-09-17 15:21 笑看苍天 阅读(398) 评论(0) 推荐(0) 编辑