摘要: 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 AI训驼师 阅读(1964) 评论(17) 推荐(0) 编辑
点击右上角即可分享
微信分享提示