define MAXSIZE 1024
/*队列的最大容量*/
typedef
struct
{
datatype data[MAXSIZE];
/*队员的存储空间*/
int
rear,front;
/*队头队尾指针*/
} SeQueue;