namespace 线性表 { interface IListDS {
int GetLength();
void Clear();
bool IsEmpty();
void Add(T item);
void Insert(T item, int index);
T Delete(int index);
T this[int index] { get; }
T GetEle(int index);
int Locate(T value);
}
}
namespace 线性表 { interface IListDS {
int GetLength();
void Clear();
bool IsEmpty();
void Add(T item);
void Insert(T item, int index);
T Delete(int index);
T this[int index] { get; }
T GetEle(int index);
int Locate(T value);
}
}
本文标题:线性表。
本文链接:https://www.haomeiwen.com/subject/qlgmcftx.html
网友评论