摘要: public interface IListDS<T> { int GetLength(); //求长度 void Clear(); //清空操作 bool IsEmpty(); //判断线性表是否为空 void Append(T item); //附加操作 void Insert(T item, 阅读全文
posted @ 2021-10-08 11:09 _MrZhu 阅读(28) 评论(0) 推荐(0)