順序表的實現

要求編寫一個程序,實現順序表的建立,插入,刪除,查找,操作。 效果: 代碼: #include<iostream> #include<memory.h> #define MAXSIZE 10 using namespace std; typedef struct {//順序表存儲結構 int *elem; int length; }SqList; bool List_Init(SqLis
相關文章
相關標籤/搜索