美文网首页
线性表。

线性表。

作者: 立秋i | 来源:发表于2018-03-30 23:31 被阅读0次

    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