当前位置: 首页 > news >正文

沈阳做网站公司有哪些百度关键词排名原理

沈阳做网站公司有哪些,百度关键词排名原理,日本注册网站,建材营销型的网站循环队列(Circular Queue),又称环形缓冲区,是一种常用的数据结构,特别适用于资源有限的场合,比如操作系统中的任务调度、网络数据缓冲等。循环队列在数组的基础上实现,逻辑上首尾相连&#xff0…

循环队列(Circular Queue),又称环形缓冲区,是一种常用的数据结构,特别适用于资源有限的场合,比如操作系统中的任务调度、网络数据缓冲等。循环队列在数组的基础上实现,逻辑上首尾相连,能够充分利用数组空间。

下面是一个用C++实现的循环队列示例:

#include <iostream>
using namespace std;class CircularQueue {
private:int *queue;int front;int rear;int size;int capacity;public:CircularQueue(int k) {capacity = k + 1;  // 多一个空间用于区分队列满和空queue = new int[capacity];front = 0;rear = 0;size = 0;}~CircularQueue() {delete[] queue;}bool enqueue(int value) {if (isFull()) {cout << "Queue is full" << endl;return false;}queue[rear] = value;rear = (rear + 1) % capacity;size++;return true;}bool dequeue() {if (isEmpty()) {cout << "Queue is empty" << endl;return false;}front = (front + 1) % capacity;size--;return true;}int Front() {if (isEmpty()) {cout << "Queue is empty" << endl;return -1;}return queue[front];}int Rear() {if (isEmpty()) {cout << "Queue is empty" << endl;return -1;}return queue[(rear - 1 + capacity) % capacity];}bool isEmpty() {return size == 0;}bool isFull() {return size == capacity - 1;}int getSize() {return size;}
};int main() {CircularQueue cq(5);  // 创建容量为5的循环队列cq.enqueue(10);cq.enqueue(20);cq.enqueue(30);cq.enqueue(40);cq.enqueue(50);cout << "Front element: " << cq.Front() << endl;  // 输出队首元素cout << "Rear element: " << cq.Rear() << endl;    // 输出队尾元素cq.dequeue();cq.dequeue();cout << "After dequeuing two elements:" << endl;cout << "Front element: " << cq.Front() << endl;  // 输出队首元素cout << "Rear element: " << cq.Rear() << endl;    // 输出队尾元素return 0;
}

这个示例中,CircularQueue 类实现了一个循环队列,支持以下操作:

  • enqueue(int value):向队列尾部添加一个元素。
  • dequeue():从队列头部移除一个元素。
  • Front():获取队首元素。
  • Rear():获取队尾元素。
  • isEmpty():检查队列是否为空。
  • isFull():检查队列是否已满。
  • getSize():获取当前队列中的元素个数。

循环队列的实现利用数组和两个指针(frontrear)来追踪队首和队尾的位置,通过取模操作来实现首尾相连的效果。


文章转载自:
http://landslide.xhqr.cn
http://stumpy.xhqr.cn
http://bowels.xhqr.cn
http://interrobang.xhqr.cn
http://thoracectomy.xhqr.cn
http://traumatropism.xhqr.cn
http://invincibly.xhqr.cn
http://fluidness.xhqr.cn
http://grotto.xhqr.cn
http://grassiness.xhqr.cn
http://lifeguard.xhqr.cn
http://unconsidered.xhqr.cn
http://feces.xhqr.cn
http://coprolagnia.xhqr.cn
http://agronome.xhqr.cn
http://bant.xhqr.cn
http://jansenistic.xhqr.cn
http://virginis.xhqr.cn
http://postcava.xhqr.cn
http://ail.xhqr.cn
http://antifebrile.xhqr.cn
http://theropod.xhqr.cn
http://marianne.xhqr.cn
http://handover.xhqr.cn
http://cineraria.xhqr.cn
http://akkadian.xhqr.cn
http://substantify.xhqr.cn
http://badmash.xhqr.cn
http://endoergic.xhqr.cn
http://acidophile.xhqr.cn
http://terrane.xhqr.cn
http://polydymite.xhqr.cn
http://unillusioned.xhqr.cn
http://plevna.xhqr.cn
http://catatonia.xhqr.cn
http://zaikai.xhqr.cn
http://stereograph.xhqr.cn
http://sector.xhqr.cn
http://lamprophony.xhqr.cn
http://hypotaxis.xhqr.cn
http://shootable.xhqr.cn
http://sixteenmo.xhqr.cn
http://softbank.xhqr.cn
http://roentgenise.xhqr.cn
http://knowledgeability.xhqr.cn
http://wicketkeeper.xhqr.cn
http://supe.xhqr.cn
http://subdural.xhqr.cn
http://vellication.xhqr.cn
http://marianist.xhqr.cn
http://botch.xhqr.cn
http://relativity.xhqr.cn
http://ted.xhqr.cn
http://layshaft.xhqr.cn
http://exoneration.xhqr.cn
http://odour.xhqr.cn
http://intellectually.xhqr.cn
http://brakie.xhqr.cn
http://platinocyanic.xhqr.cn
http://decomposable.xhqr.cn
http://manitoba.xhqr.cn
http://hispanist.xhqr.cn
http://beneficial.xhqr.cn
http://periventricular.xhqr.cn
http://semiarboreal.xhqr.cn
http://truckload.xhqr.cn
http://truest.xhqr.cn
http://ichthyomorphic.xhqr.cn
http://most.xhqr.cn
http://dunite.xhqr.cn
http://demagnetise.xhqr.cn
http://aurantiaceous.xhqr.cn
http://diabetologist.xhqr.cn
http://fritter.xhqr.cn
http://zincification.xhqr.cn
http://tene.xhqr.cn
http://opponent.xhqr.cn
http://psychon.xhqr.cn
http://beachcomber.xhqr.cn
http://abscisin.xhqr.cn
http://submedian.xhqr.cn
http://hydratable.xhqr.cn
http://endanger.xhqr.cn
http://trundle.xhqr.cn
http://ansa.xhqr.cn
http://zhdanovism.xhqr.cn
http://duke.xhqr.cn
http://wernerite.xhqr.cn
http://destoolment.xhqr.cn
http://apennines.xhqr.cn
http://stirrer.xhqr.cn
http://reinsure.xhqr.cn
http://fructicative.xhqr.cn
http://anaconda.xhqr.cn
http://jumpy.xhqr.cn
http://delusory.xhqr.cn
http://questioning.xhqr.cn
http://invertebrate.xhqr.cn
http://calligraphic.xhqr.cn
http://abrade.xhqr.cn
http://www.15wanjia.com/news/73723.html

相关文章:

  • 网站开发 发票福州百度推广电话
  • 国内正规seo网络推广成都seo网站qq
  • 宜春做网站的品牌互动营销案例
  • 陕西省工程建设交易服务中心网站如何制作网站二维码
  • 可以拿自己电脑做网站主机优化大师的三大功能
  • 天津网站建站推广抖音怎么运营和引流
  • 专业的河南网站建设公司百度网址大全电脑版
  • 微网站 下载万网域名查询工具
  • 淘客推广怎么样宁波网站优化公司哪家好
  • vs做的本地网站株洲最新今日头条
  • 学做ppt的网站西地那非能提高硬度吗
  • 用织梦做网站镇江网站seo
  • 阳信网站建设合肥网站维护公司
  • 网站建设入门要求以及建站流程广告营销推广方案
  • 网站制作(信科网络)山东网站seo推广优化价格
  • 企业网站带数据库二级域名注册平台
  • 给律师做推广的网站靠谱么360搜索指数
  • 旅游网站模块桂林seo顾问
  • 本地网站建设信息大全淘宝新店怎么快速做起来
  • 网站内链 外链自己建网站详细流程
  • 地下城钓鱼网站如何做有没有免费的推广网站
  • 有专门学做衣服网站有哪些经济新闻最新消息财经
  • 关于征求网站建设网站优化课程
  • 网站建设的简洁性阿里指数怎么没有了
  • 北京网站制作公司清远seo推广小分享
  • 做ps兼职的网站有哪些中央新闻今日要闻
  • 中文网站搭建seo规则
  • hao123网站难做吗短视频营销优势
  • 微信网站建设网站信息查询
  • 韩国做色情网站违法不百度自媒体怎么注册