循环队列c语言版

news2025/1/12 9:05:16

一、循环队列结构体

typedef int  QueueDataType; 
#define CQ_MAX_SIZE  10

typedef struct CircularQueue
{
   QueueDataType data[CQ_MAX_SIZE];
   
   /**标记队列首*/
   QueueDataType head;

   /**标记队列尾部*/
   QueueDataType rear;

} CircularQueue;

二、循环队列操作函数声明


/**创建队列*/
CircularQueue* create_circular_queue();

/**队列是否已满*/
bool  isFull(CircularQueue* queue);

/**队列是否为空*/
bool  isEmpty(CircularQueue* queue);


/**入队列*/
bool  enqueue(CircularQueue* queue,QueueDataType el);


/**出队列*/
QueueDataType dequeue(CircularQueue* queue);


/**输出队列*/
void show_queue(CircularQueue* queue);

/**销毁队列*/
void   destory_queue(CircularQueue* queue);

三、循环队列操作函数定义

/**创建队列*/
CircularQueue* create_circular_queue()
{
   CircularQueue* queue = (CircularQueue*) malloc(sizeof(CircularQueue));
   if(queue ==  NULL)
   {
    perror("CircularQueue分配内存空间失败");
    return NULL;
   }
   queue->head  = 0;
   queue->rear  = 0;
   return queue;
}

/**队列是否为空*/
bool  isEmpty(CircularQueue* queue)
{
  return queue->head == queue->rear;
}

/**队列是否已满*/
bool  isFull(CircularQueue* queue)
{
 //  rear是冗余出来的一个空间,置于队尾,用于记当前队中元素的个数
  return  (queue->rear + 1)%CQ_MAX_SIZE == queue->head;
}

/**入队列*/
bool  enqueue(CircularQueue* queue,QueueDataType el)
{
    if(isFull(queue))
    {
        perror("队列已满");
        return  false;
    }
    queue->data[queue->rear%CQ_MAX_SIZE]  = el ;
    queue->rear++;
    return true;
}


/**出队列*/
QueueDataType dequeue(CircularQueue* queue)
{
    if(isEmpty(queue))
    {
      perror("对列中暂无元素");
      return -1;
    }
    QueueDataType el = queue->data[queue->head%CQ_MAX_SIZE];
    queue->head++;
    return el;
}


/**输出队列*/
void show_queue(CircularQueue* queue)
{
    if(isEmpty(queue))
    {
      perror("对列中暂无元素");
      return ;
    }
    int i =  queue->head;
    while ( i < queue->rear)
    {
       QueueDataType el = queue->data[i%CQ_MAX_SIZE];
       printf("el=%d\n",el); 
       i++;
    }
}


void   destory_queue(CircularQueue* queue)
{
    free(queue);
}

四、测试队列

void  test_cricular_queue()
{
  CircularQueue *quque = create_circular_queue();
  QueueDataType arr[] =  {11,21,31,41,51,61,71,81,91,101};
  int  i = 0;
  for(;i<10;i++)
  {
     enqueue(quque,arr[i]);
  }
  show_queue(quque);
  QueueDataType  el = dequeue(quque);
  printf("取出队列元素el=%d\n",el);
  destory_queue(quque);
}

运行结果:

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/1127964.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

项目部署Linux一般步骤

1、最小化安装centos7-环境准备 安装epel-release 安装epel-release&#xff0c;因为有些rpm包在官方库中找不到。前提是保证可以联网 yum install -y epel-release 修改IP net-tools net-tool&#xff1a;工具包集合&#xff0c;包含ifconfig等命令 yum install -y net-…

【技能树笔记】网络篇——练习题解析(九)

目录 前言 一、OSPF双栈 1.1 OSPFv3 LSA 1.2 OSPFv3 二、ISIS双栈 2.1 ISISv6 2.2 ISIS高级特性 三、BGP双栈 四、PIM双栈 总结 &#x1f308;嗨&#xff01;我是Filotimo__&#x1f308;。很高兴与大家相识&#xff0c;希望我的博客能对你有所帮助。 &#x1f4a1;本文由Filot…

SpringDoc API文档工具集成SpringBoot - Swagger3

1、引言 之前在Spring Boot项目中一直使用的是SpringFox提供的Swagger库&#xff0c;发现已经超过3年没出新版本了&#xff01;SpringDoc是一款可以结合Spring Boot使用的API文档生成工具&#xff0c;基于OpenAPI 3&#xff0c;是一款更好用的Swagger库&#xff01;值得一提的是…

Playwright 配置文件/运行命令/测试标记

Playwright 配置文件/运行命令/测试标记 一、运行说明 1. 运行命令 // 运行测试集&#xff0c;无界面模式 npx playwright test// 运行测试集&#xff0c;界面模式 npx playwright test --ui// 运行单个测试文件 npx playwright test test_file.spec.ts// 以调试模式运行测试…

选购采购管理软件,首先考虑这5个功能

虽然采购已经达到了数字化的临界点&#xff0c;但企业在接受新的解决方案时却犹豫不决。德勤一份全球首席采购官调查显示&#xff0c;只有 18% 的组织制定了数字化采购战略。 自动化采购任务和优化采购到付款周期可以为企业节省大量金钱和时间。然而&#xff0c;通过过时的采购…

Maven依赖scope为system级别部署时Jar包缺少解决

问题 在开发springboot项目时&#xff0c;maven引入本地第三方jar包&#xff0c;在idea中运行正常。打成jar部署后报找不到类 错误如下&#xff1a; ERROR SpringApplication.reportFailure(834) | Application run failed org.springframework.beans.factory.UnsatisfiedDep…

【tio-websocket】8、服务配置与维护—TioConfig

场景 我们在写 TCP Server 时,都会先选好一个端口以监听客户端连接,再创建N组线程池来执行相关的任务,譬如发送消息、解码数据包、处理数据包等任务,还要维护客户端连接的各种数据,为了和业务互动,还要把这些客户端连接和各种业务数据绑定起来,譬如把某个客户端绑定到一…

仪表盘自定义标题和数值样式

仪表盘自定义标题和数值样式 fn() var myEcharts; function fn(v) {var chartDom document.getElementById(myEcharts);myEcharts&& myEcharts.dispose();myEcharts echarts.init(chartDom, walden);var option;option {series: [{type: gauge,radius: 85%,center: […

activiti7 报错Couldn‘t resolve collection expression nor variable reference

解决方法 nacos添加配置 spring&#xff1a;activiti: serializePOJOsInVariablesToJson: false 截图如下&#xff1a; 分析过程 Couldnt resolve collection expression nor variable reference报错分析是“无法解析集合表达式或变量引用” 刚开始我一直测试…

激光雷达数据为例滤波器

可以通过传感器获取障碍物的位置、速度; 但是任何测量结果都是有误差的。 因此需要在传感器测量结果的基础上, 进行跟踪,以此来保证障碍物的位置、速度等信息不会发生突变。 所谓的跟踪就是通过运动模型来递推障碍物的位置、速度等信息。 最经典的跟踪算法是卡尔曼滤波器。…

用户社交信息交互卡片

效果展示 CSS 知识点 CSS 基础知识回顾transition-delay 属性的运用 整体页面布局实现 <div class"card"><div class"user"><div class"img_box"><img src"bg.jpg" /></div><div class"cont…

积分球检测水质的原理是什么?

积分球可以用于检测水质&#xff0c;主要通过测量水体中物质的吸收光谱来实现。具体来说&#xff0c;光路经过积分球内腔&#xff0c;当水样经过球体时&#xff0c;水体中的物质会吸收一定波长的光&#xff0c;从而改变球体的透射光强。通过测量球体透射光强的改变&#xff0c;…

UE 交互草实现 不通过RT与距离场的方式

通过计算世界场景位置与玩家位置的距离&#xff0c;如果距离大于等于DistanceEffect则不做操作&#xff0c;若小于DistanceEffect则DistanceEffect减去两者之间距离除以并除以DistanceEffect&#xff0c;为什么有这个操作呢&#xff1f; 因为我们要做在DistanceEffect距离内&a…

水质分析仪器升级新功能

水质分析仪器&#xff1a;是一种适用于水质多参数测试的便携式仪器。它具有7英寸的触摸彩色屏幕&#xff0c;用户可以通过触摸屏幕进行操作和查看测试结果。 该仪器主要用于测定COD&#xff0c;氨氮&#xff0c;总磷&#xff0c;总氮等常规水质指标&#xff0c;pH值、溶解氧、…

CTFhub-SSRF-端口扫描

根据提示&#xff1a; 来来来性感CTFHub在线扫端口,据说端口范围是8000-9000哦, 用数字生成器生成 8000-9000 的数字 在线生成1到10000阿拉伯数字 - 批量之家 通过 burp 抓包爆破 爆破需要在 url 后添加 127.0.0.1&#xff1a; 根据爆破结果&#xff0c;端口是 8335

【EI会议征稿】第五届大数据与信息化教育国际学术会议(ICBDIE 2024)

【有往届检索记录】第五届大数据与信息化教育国际学术会议&#xff08;ICBDIE 2024&#xff09; 2023 5th International Conference on Big Data and Informatization Education 第五届大数据与信息化教育国际学术会议&#xff08;ICBDIE 2024&#xff09;定于2024年01月19-…

记录npm的版本问题

安装vivo小游戏开发者工具时&#xff0c;运行mg -v时出现错误&#xff0c;错误的原因是node.js的的版本过低&#xff0c;我用的是6.11.2&#xff0c;将node.js升级到10.10.0问题解决

别处拿来的VUE项目 npm run serve报错

问题现象&#xff1a; 从别处拷贝来的VUE项目&#xff0c;根据说明通过npm install 加载了项目依赖 &#xff0c;但是运行npm run serve里报错&#xff1a; npm ERR! Missing script: "serve" npm ERR! npm ERR! To see a list of scripts, run: npm ERR! npm ru…

Mr.Alright---MTK安卓13 抬手亮屏功能的逻辑

该功能在系统设置-显示-拿起设备时唤醒 alps\vendor\mediatek\proprietary\packages\apps\MtkSettings\src\com\android\settings\display\LiftToWakePreferenceController.javapublic boolean isAvailable() {SensorManager sensors (SensorManager) mContext.getSystemServ…

应用系统集成-企业集成模式(EIP)

应用系统集成-企业集成模式&#xff08;EIP&#xff09; 无论是系统间集成或是系统内部组件之间通讯&#xff0c;消息&#xff08;信息流&#xff09;都是系统设计最重要的因素。EIP将详细的讲述了从消息的角度进行集成设计考虑方方面面&#xff0c;是系统设计重要的参考资料。…