摘要: using System;using System.Collections.Generic;using System.Text;namespace List{ public class Node<T> { private T data; private Node<T> next; public Node(T val) { data = val; next = null; }... 阅读全文
posted @ 2008-12-12 12:56 ibrahim 阅读(1947) 评论(17) 推荐(0) 编辑