文件名称:4

  • 所属分类:
  • 其他小程序
  • 资源属性:
  • [C/C++] [源码]
  • 上传时间:
  • 2015-12-01
  • 文件大小:
  • 2kb
  • 下载次数:
  • 0次
  • 提 供 者:
  • kimha*****
  • 相关连接:
  • 下载说明:
  • 别用迅雷下载,失败请重下,重下不扣分!

介绍说明--下载内容均来自于网络,请自行研究使用

通过扩展已实现的基本数据结构,模拟更为复杂的数据结构,是一种常见而实用的技巧。这里,我们将利用栈结构,来模拟一种功能增强的队列。



具体来说,你必须首先实现一个元素类型为int的栈,该栈能且只能支持以下操作接口:



bool empty() //判断是否栈空



void push(int) //向栈中压入一个整数



int pop() //弹出栈顶元素,并返回其数值



int top() //仅获取栈顶元素的值,但不弹出

接下来,你必须借助以上栈结构,模拟所谓的队堆(queap)结构,它至少支持以下操作接口:



void enqueue(int) //新元素作为尾元素入队



int dequeue() //队首元素出队,并返回其数值(调用时输入数据保证队列非空)



int min() //返回队列内的最小元素(调用时输入数据保证队列非空)

可见,这种结构之所以称作队堆,是因为它兼具一定的队列(queue)和堆(heap)的功能。



最后,你还需要通过一系列真实的查询和修改操作,对所实现的队堆结构进行测试。-Expansion has been achieved through a column of basic data structures, simulate more complex data structures, is a common and practical skills. Here, we will use the stack structure to simulate a feature enhanced queue.



Specifically, you must first implement an element of type int stack, the stack can and only supports the following user interface:



bool empty () // determine whether the stack empty



void push (int) // to stack pressed into an integer



int pop () // pop the top element, and returns its value



int top () // get only the value of the stack elements, but does not pop up

Next, you must use the above stack structure, simulate the so-called Team heap (queap) structure, which supports at least the following interfaces:



void enqueue (int) // a new element into the team as the last element



int dequeue () // element of the first team squad, and returns its value (input data to ensure that the queue is not empty when you call)



int min () // Returns the
(系统自动生成,下载前可以参看下载内容)

下载文件列表





PA2.vcxproj

PA2.vcxproj.filters

4.cpp

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度更多...
  • 请直接用浏览器下载本站内容,不要使用迅雷之类的下载软件,用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.

相关评论

暂无评论内容.

发表评论

*主  题:
*内  容:
*验 证 码:

源码中国 www.ymcn.org