链表

#define OK 1
#define ERROR 0
#define TRUE 1
#define FALSE 0
#define INFEASIBLE -2
#define OVERFLOW -1

#include
#include

typedef int Status;  //Status 相当于 int
typedef struct LNode
{
 int data;
 struct LNode * next;
}LNode,* LinkList;  //Lnode相当于 struct Lnode

/