数据结构——队列的链式表示和实现
/* 队列的链式表示和实现 2018.04.20*/#include<iostream>#include<string.h>#include<stdlib.h>using namespace std;#define OK 1#define ERROR 0#define OVERFLOW -1typedef int Stat...