数据结构-C语言实现顺序表

#include<stdio.h> #include<stdlib.h> #define ERROR 0 #define LIST_INIT_SIZE 100 #define LISTINCREAMENT 10 #define OK 1 #define OVERFLOW -1 #define TURE 1 #define FALSE 0 typedef int Status; typedef in
相关文章
相关标签/搜索