波斯马BOSSMA Information Technology

数据结构 下的日志

C#线性表的顺序存储结构

发布时间:2008年7月28日 / 分类:DOTNET / 抢沙发

模仿Java线性表的顺序存储结构。 Main Functions:IsEmpty,IsFull,Get Length,Get Item,Set Item,Is Contains,Get Value,Index,Insert,Remove public class LinerList ??? { ??????? private int[] _lists; ??????? private int _length; ??????? /// ??????? /// Con...