C語言線性表的基本操做

1.置空表web void SeqLSetNull(SeqList* l) { l->last=-1; }svg 2.求表的長度xml int SeqLLength(SeqList* l) { return l->last+1; }it 3.取結點ast DataType SeqLGet(SeqList* l,int i){ if(i<1||i>l->last+1){ printf("\t i的位
相關文章
相關標籤/搜索