順序表操作(初始化、取值、查找、刪除、插入)17計科班

#include<iostream> using namespace std; #define MAXSIZE 100 #define OK 1 #define ERROR 0 #define OVERFLOW -2 typedef int ElemType; typedef int Status; typedef struct{ ElemType *elem; int length; }
相關文章
相關標籤/搜索