刪除線性表中多餘元素

問題: 算法1:由於是順序表進行刪除要進行大量移動,時間複雜度比較大,所以選算法2較好。 #include<stdio.h> #include<stdlib.h> typedef int ElemType; typedef struct{ ElemType *elem; int length; int listsize; }Sqlist; bool Createlist(Sqlist &L,
相關文章
相關標籤/搜索