10 2011 档案

摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace LinkedList{ public interface IListDS<T> { int GetLength(); void Clear(); bool IsEmpty(); void Append(T item); void Insert(T item, int i); T Delete(int i); ... 阅读全文
posted @ 2011-10-18 14:17 Ligeance 阅读(1571) 评论(0) 推荐(0)