線性表-順序表和單鏈表的定義與基本操做

線性表接口定義:IListDS.cshtml public interface IListDS < T > { int GetLength(); // 求長度 void Clear(); // 清空操做 bool IsEmpty(); // 判斷線性表是否爲空 void Append(T item); // 附加操做 void Insert(T item, int i); // 插入操做 T De
相關文章
相關標籤/搜索