- 1、本文档共60页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
chapterppt整理
Queue Model AbstractDataType Queue { instances ordered list of elements;one end is called the front; the other is the rear; operations Create(): Create an empty queue; IsEmpty(): Return true if queue is empty,return false otherwise; IsFull(): return true if queue is full, return false otherwise; First(): return first element of the queue; Last(): return last element of the queue; Add(x): add element x to the queue; Delete(x): delete front element from the queue and put it in x; } 3.4.2. Array Implementation of Queue A B C …… theArray: front back 0 1 2 n-1 X currentSize the queue size : currentSize; an empty queue has currentSize= = 0; an full queue has currentSize= = theArray.length; 3.4.2. Array Implementation of Queue To add an element: back=back+1; theArray[back]=x; To delete an element: two methods: 1) front=front+1; O(1) 2) shift the queue one position left. O(n) 3.4.2. Array Implementation of Queue front back front back front back A B C … B C … B C D … 3.4.2. Array Implementation of Queue … A B C D E Front back Free space 3.4.2. Array Implementation of Queue to use a circular array to represent a queue back C B A front back C B A front D Addtion 3.4.2. Array Implementation of Queue deletion C B A front D back deletion C B front back D 3.4.2. Array Implementation of Queue How implementation a circular array: When front or back reachs theArray.length-1, reset 0 2) back = (back+1) % theArray.length front = (front + 1) % theArray.length 3.4.2. Array Implementation of Queue Public class QueueAr { public QueueAr( ) public QueueAr( int capacity ) public boolean isEmpty( ){ return currentsize =
您可能关注的文档
- CAD2007教程完美版第11章 标注基础与样式设置.ppt
- CAD2007教程完美版第12章 标注尺寸与编辑标注对象.ppt
- CAD2007教程完美版第13章 三维绘制基础与简单图形的绘制.ppt
- CAD2007教程完美版第14章 绘制三维网格和实体.ppt
- CAD2007教程完美版第1章 AutoCAD007入门基础.ppt
- CAD2007教程完美版第2章 绘制简单二维图形对象.ppt
- CAD2007教程完美版第5章 规划和管理图层.ppt
- C 操作SQLServer数据库.ppt
- CAD2007教程完美版第4章 使用修改命令编辑对象ppt整理.ppt
- CAD2007教程完美版第6章 控制图层显示ppt整理.ppt
文档评论(0)