博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
顺序队列
阅读量:6273 次
发布时间:2019-06-22

本文共 1055 字,大约阅读时间需要 3 分钟。

template
class SeqQueue{public: SeqQueue(int sz):m_nrear(0),m_nfront(0),m_ncount(0),m_nMaxSize(sz){ m_pelements=new Type[sz]; if(m_pelements==NULL){ cout<<"Application Error!"<
void SeqQueue
::MakeEmpty(){ this->m_ncount=0; this->m_nfront=0; this->m_nrear=0;}template
bool SeqQueue
::IsEmpty(){ return m_ncount==0;}template
bool SeqQueue
::IsFull(){ return m_ncount==m_nMaxSize;}template
bool SeqQueue
::Append(const Type item){ if(IsFull()){ cout<<"The queue is full!"<
Type SeqQueue
::Delete(){ if(IsEmpty()){ cout<<"There is no element!"<
Type SeqQueue
::Get(){ if(IsEmpty()){ cout<<"There is no element!"<
void SeqQueue
::Print(){ cout<<"front"; for(int i=0;i
"<
rear"<
<
<

#include 
using namespace std;#include "SeqQueue.h"int main(){ SeqQueue
queue(10); int init[10]={1,6,9,0,2,5,8,3,7,4}; for(int i=0;i<5;i++){ queue.Append(init[i]); } queue.Print(); cout<
<

转载地址:http://qlmpa.baihongyu.com/

你可能感兴趣的文章
驰骋工作流引擎三种项目集成开发模式
查看>>
SUSE11修改主机名方法
查看>>
jdk6.0 + Tomcat6.0的简单jsp,Servlet,javabean的调试
查看>>
RestTemplate 使用总结
查看>>
Android:apk签名
查看>>
2(2).选择排序_冒泡(双向循环链表)
查看>>
MySQL 索引 BST树、B树、B+树、B*树
查看>>
微信支付
查看>>
CodeBlocks中的OpenGL
查看>>
短址(short URL)
查看>>
C++零基础教程(一)——何谓编程
查看>>
第十三章 RememberMe——《跟我学Shiro》
查看>>
使用rsync的文件和目录排除列表
查看>>
mysql 时间函数 时间戳转为日期
查看>>
索引失效 ORA-01502
查看>>
Oracle取月份,不带前面的0
查看>>
Linux Network Device Name issue
查看>>
IP地址的划分实例解答
查看>>
如何查看Linux命令源码
查看>>
设置 SecureCRT RZ 默认目录
查看>>