摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace SequenceList{ 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-09-30 11:51 Ligeance 阅读(289) 评论(0) 推荐(0) 编辑