线性表-顺序表和单链表的定义与基本操做

线性表接口定义:IListDS.cshtml public interface IListDS < T > { int GetLength(); // 求长度 void Clear(); // 清空操做 bool IsEmpty(); // 判断线性表是否为空 void Append(T item); // 附加操做 void Insert(T item, int i); // 插入操做 T De
相关文章
相关标签/搜索