此代码可以正常运行,是实实在在的类C语言
#include <stdio.h>
#define M 100
typedef int QElemType;
typedef struct
{
QElemType *base;
int front; //尾指针(实际上指下标)
int rear;
}SqQueue
此代码可以正常运行,是实实在在的类C语言
#include <stdio.h>
#define M 100
typedef int QElemType;
typedef struct
{
QElemType *base;
int front; //尾指针(实际上指下标)
int rear;
}SqQueue