This commit is contained in:
筱锋xiao_lfeng 2023-05-21 16:38:55 +08:00
commit 4d7f7d1276
4 changed files with 141 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
# 项目排除路径
/cmake-build-debug/

21
LICENSE Normal file
View File

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2016-2023 筱锋xiao_lfeng
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

8
README.md Normal file
View File

@ -0,0 +1,8 @@
# DataStructure_ArrayQueue_C
高等院校计算机必修课基于C语言数据结构 —— 线性表(队列)
作者:[筱锋xiao_lfeng](https://www.x-lf.com/)
注意代码不更新接收用户PR。
若使用请遵循MIT开源协议

110
main.cpp Normal file
View File

@ -0,0 +1,110 @@
#include <cstdio>
#define MaxSize 100
typedef int datatype;
typedef struct {
int rear;
int front;
datatype data[MaxSize];
} SqQueue;
// 初始化队列
void InitQueue(SqQueue &queue) {
queue.rear = 0;
queue.front = 0;
}
// 判断队列是否为空
int isEmpty(SqQueue queue) {
if (queue.rear == queue.front) return 1;
return 0;
}
// 判断队列是否为满
int isFull(SqQueue queue) {
if (queue.front-1 == queue.rear) return 1;
return 0;
}
// 入队
int enQueue(SqQueue &queue, datatype data) {
if (queue.front-1 == queue.rear) return 0;
queue.data[queue.rear] = data;
if ( (queue.rear+1)%MaxSize == 0 && (queue.rear+1)%MaxSize < queue.front)
queue.rear = (queue.rear+1)%MaxSize;
else queue.rear++;
return 1;
}
// 出队
int deQueue(SqQueue &queue) {
if (queue.rear == queue.front) return 0;
queue.data[queue.front] = NULL;
if ((queue.front+1)%MaxSize == 0 && (queue.front+1)%MaxSize < queue.rear)
queue.front = (queue.front+1)%MaxSize;
else queue.front++;
return 1;
}
// 查询队列
void selQueue(SqQueue queue) {
printf("[SELECT] 队列列表:[ ");
for (int i = queue.front; i < queue.rear-1; ++i) {
printf("%d, ",queue.data[i]);
}
printf("%d ]\n",queue.data[queue.rear-1]);
printf("\n");
}
int main() {
int ch;
datatype e;
SqQueue queue;
InitQueue(queue);
Start:
printf("[INFO] 队列菜单:\n");
printf("\t=========\n");
printf("\t1. 入队\n");
printf("\t2. 出队\n");
printf("\t3. 队列查询\n");
printf("\t4. 是否队满\n");
printf("\t5. 是否队空\n");
printf("\t==========\n");
printf("\t选择内容:");
scanf_s("%d", &ch);
printf("\n");
switch (ch) {
case 1:
printf("[INSERT] 插入数据:");
scanf_s("%d", &e);
if (enQueue(queue,e)) printf("\t[INFO] 队列插入成功\n");
else printf("\t[INFO] 队列插入失败(队满)");
printf("\n");
goto Start;
case 2:
if (deQueue(queue)) printf("[INFO] 出队成功\n");
else printf("[INFO] 出队失败(队空)\n");
printf("\n");
goto Start;
case 3:
selQueue(queue);
goto Start;
case 4:
if (isFull(queue))
printf("[SELECT] 队满\n");
else
printf("[SELECT] 未满\n");
printf("\n");
goto Start;
case 5:
if (isEmpty(queue))
printf("[SELECT] 队空\n");
else
printf("[SELECT] 未空\n");
printf("\n");
goto Start;
default: break;
}
}