順序表的初始化即構造一個空表
PSeqList Init_SeqList(void )
{ /*創建一順序表
PSeqList SeqListPoint;
SeqListPoint =( PSeqList )malloc(sizeof(SeqList));
if (SeqListPoint) /*若SeqListPoint=
SeqListPoint
return (SeqListPoint);
}
算法
[
From:http://tw.wingwit.com/Article/program/sjjg/201311/23646.html