当前位置:   article > 正文

循环队列的基本操作 C语言版_initqueue(q1); 为何报错说定义不在范围内

initqueue(q1); 为何报错说定义不在范围内
#include <stdio.h>
#include <stdlib.h>
typedef int ElemType;
#define MaxSize 50
typedef struct {
	ElemType data[MaxSize];
	int front; //队头指针
	int rear; //队尾指针
} SqQueue;

//循环队列初始化
SqQueue* InitQueue(SqQueue *Q) {

	Q->front = Q->rear = 0;
	return Q;
}

//判断队列是否为空
ElemType isEmpty(SqQueue *Q) {
	if (Q->rear == Q->front)
		return 0;
	else
		return 1;
}

//入队
int EnQueue(SqQueue *Q, ElemType x) {
	if ((Q->rear + 1) % MaxSize == Q->front) { //队列满报错
		return 0;
	}
	Q->data[Q->rear] = x;
	Q->rear = (Q->rear + 1) % MaxSize;
	return 1;
}

//出队
void DeQueue(SqQueue *Q) {

	Q->front = (Q->front + 1) % MaxSize;

}

//遍历
void PrintQueue(SqQueue *Q) {

	for (int i = Q->front; i < Q->rear; i++) {
		printf("%d", Q->data[i]);
	}
}

int main() {
	SqQueue Q;
	//初始化
	SqQueue *Q1 = InitQueue(&Q);
	//入队
	EnQueue(Q1, 1);
	EnQueue(Q1, 2);
	EnQueue(Q1, 3);
	EnQueue(Q1, 4);
	//打印
	PrintQueue(Q1);

	printf("\n");
	//出队

	DeQueue(Q1);

	//打印
	PrintQueue(Q1);

}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/646391
推荐阅读
相关标签
  

闽ICP备14008679号