大一新手學習線性表-順序表的合併(C語言)

#ifndef _SQLIST_H_ #define _SQLIST_H_ #include<stdio.h> #include<string.h> #include<stdlib.h> //線性順序表 #define MAXSIZE  10 #define OVERFLOW -1 #define OK 1 #define ERROR -2 //類型重定義 typedef int ElemType
相關文章
相關標籤/搜索