原创 數據結構-順序存儲-線性表-基本運算

//定義原理 const int Maxsize=100; typdef struct { DataType data[Maxsize]; int length; }SeqList; SeqList L; //在第i(1~n+1)個