摘要: using System ;using System.Collections.Generic;using System .Text;namespace structure{ class Program { class nodes<T> { T data; nodes<T> Lnode,rnode,pnode; public T Data { get {return data;} set{data =value;} } public nodes<T>LNode { get {return Lnode ;} set {Lnode =value... 阅读全文
posted @ 2009-09-25 11:05 清山博客 阅读(262) 评论(0) 推荐(0)