顺序表

#define OK 1
#define ERROR 0
#define TRUE 1
#define FALSE 0
#define INFEASIBLE -1
#define OVERFLOW -2
#define LIST_INIT_SIZE 15
#define LIST_INCREMENT 10

#include
#include
#include

typedef int Status;  //Status 相当于 int
typedef struct Sqlist
{
 int * elem;
 int length;
 int list_size;
}Sql;  //Sql相当于 struct Sqlist

/