实验1数据结构栈和队列的实现和应用

实验1数据结构栈和队列的实现和应用

ID:34463131

大小:42.64 KB

页数:14页

时间:2019-03-06

实验1数据结构栈和队列的实现和应用_第1页
实验1数据结构栈和队列的实现和应用_第2页
实验1数据结构栈和队列的实现和应用_第3页
实验1数据结构栈和队列的实现和应用_第4页
实验1数据结构栈和队列的实现和应用_第5页
资源描述:

《实验1数据结构栈和队列的实现和应用》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库

1、实验1栈和队列的实现和应用实验目的1.熟练掌握栈、队列的建立方法;2.熟练掌握栈和队列基本操作;3.栈和队列的实例应用。实验内容1.选用一种存储结构建立栈、队列2.栈的应用:Adeskcalculation(教科书P66)3.队列验证:Menu-drivendemonstration(教科书上P93)实验结果总结算法应用和结构优缺点栈:#includeusingnamespacestd;constintmaxstack=100;enumError_code{success=1,overflow=-1,underflow=-1};typedef

2、intStack_entry;classStack{public:Stack(){count=0;}boolempty();Error_codepop();Error_codetop(Stack_entry&item);Error_codepush(constStack_entry&item);intsize();private:intcount;Stack_entryentry[maxstack];};Error_codeStack::push(constStack_entry&item){Error_codeoutcome=success;if(count>

3、=maxstack){outcome=overflow;}else{entry[count++]=item;}returnoutcome;}Error_codeStack::pop(){Error_codeoutcome=success;if(count==maxstack){outcome=underflow;}else{count--;}returnoutcome;}Error_codeStack::top(Stack_entry&item){Error_codeoutcome=success;if(count==0){outcome=underflow;}

4、else{item=entry[count-1];}returnoutcome;}boolStack::empty(){booloutcome=true;if(count>0){outcome=false;}returnoutcome;}intStack::size(){returncount;}intmain(){Stacknumbers;for(inti=0;i<10;i++){numbers.push(i);}intv;while(!numbers.empty()){numbers.top(v);cout<

5、eturn0;}队列:#includeusingnamespacestd;constintmaxqueue=100;enumError_code{success=1,overflow=-1,underflow=-1};typedefintQueue_entry;classQueue{public:Queue(){count=0;rear=maxqueue-1;front=0;}boolempty();Error_codeserve();Error_coderetrieve(Queue_entry&item);Error_codeappend(

6、constQueue_entry&item);intsize();private:intcount;intfront,rear;Queue_entryentry[maxqueue];};Error_codeQueue::serve(){Error_codeoutcome=success;if(count<=0){returnunderflow;}count--;front=((front+1)==maxqueue)?0:(front+1);returnsuccess;}Error_codeQueue::append(constQueue_entry&item){

7、Error_codeoutcome=success;if(count>=maxqueue){returnoverflow;}count++;rear=((rear+1)==maxqueue)?0:(rear+1);entry[rear]=item;returnsuccess;}Error_codeQueue::retrieve(Queue_entry&item){if(count<=0){returnunderflow;}item=entry[front];returnsuccess;}boolQueue::empty(){returncount==0;}int

8、Queue::size(

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。