1 Star 0 Fork 0

付少爷/queue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
films.c 636 Bytes
一键复制 编辑 原始数据 按行查看 历史
fulingjun 提交于 2021-07-10 14:47 . SRC 实现队列
/* films1.c -- using an array of structures */
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include "queue/queue.h"
int main(void)
{
Queue queue;
Item item = {0};
InitQueue(&queue);
puts("Enter your name, q to quit:");
while (scanf("%s", item.name) > 0
&& item.name[0] != 'q')
{
item.arrive = time(NULL);
QueueAdd(&queue, item);
puts("Enter your next name, q to quit):");
}
printf("count:%d\n", QueueItems(&queue));
while(!QueueIsEmpty(&queue)){
QueueDelete(&queue, &item);
printf("arrive:%d\n", item.arrive);
}
printf("Bye!\n");
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/lingjiao0710/queue.git
git@gitee.com:lingjiao0710/queue.git
lingjiao0710
queue
queue
master

搜索帮助