创建一个循环顺序队列,实现基本操做

循环队列的基本操做 #include<stdio.h> #include<stdlib.h> #include<iostream> using namespace std; #define MaxSize 100//定义最大队列长度 int i; typedef struct { int *base; int fron; //此处应为front但其为关键字 in
相关文章
相关标签/搜索