网站大量收购闲置独家精品文档,联系QQ:2885784924

第三章栈队列和递归.pptVIP

  1. 1、本文档共73页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
  5. 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
  6. 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们
  7. 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
  8. 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
第三章栈队列和递归

3.1栈(Stack) 思考题1:一个栈的输入序列为123,若在入栈的过程中允许出栈,且每个元素只允许进一次栈,则可能得到的出栈序列有哪些? 思考题2: 设依次进入一个栈的元素序列为c,a,b,d,则可得到出栈的元素序列是: A)a,b,c,d B)c,d,a,b C)b,c,d,a D)a,c,d,b template class type DSeqStacktype::DSeqStack(int size ) :top(-1),MaxSize(size) {//建立一个最大尺寸为size的空栈 S=new type[MaxSize];//创建存储栈的数组 if(S==NULL) //分配不成功 { cerr动态存储失败!endl; exit(1); //stdlib.h } } template class type void DSeqStacktype::Push(const type item) { if (top==MaxSize-1) throw 栈满!; top++; //栈未满,则入栈 S[top]=item; } template class type type DSeqStacktype::Pop( ) { type item; if (top==-1) throw 栈空!; item=S[top--];//等价于item=S[top];top--; return item; } template class type LinkStacktype::LinkStack( ) { top=NULL; //初始化空栈 } 调用函数或子程序非它莫属; 递归运算的有力工具; 用于保护现场和恢复现场; 简化了程序设计的问题; 其它应用:如括号匹配问题、表达式计算问题等。 3.1栈(Stack) template class T DCirQueueT::DCirQueue( int size) :front(0),rear(0),maxsize(size) { queue=new T[maxsize]; if(queue==NULL) throw动态分配失败!; } template class T void DCirQueueT::EnQueue(T x) { if ((rear+1) % maxsize ==front) throw “队满; rear=(rear+1) % maxsize; //队尾指针在循环意义下加1 queue[rear]=x; //在队尾处插入元素 } template class T T DCirQueueT::DeQueue( ) { if (rear==front) throw 下溢; front=(front+1) % maxsize; //队头指针在循环意义下加1 return queue[front]; //读取并返回出队前的队头元素,注意队头指针 } template class T T DCirQueueT::GetQueue( ) { int i; if (rear==front) throw “队空!; i=(front+1) % maxsize; //注意不要给队头指针赋值 return queue[i]; } template class T LinkQueueT::LinkQueue( ) { front=rear=NULL; } template class T void LinkQueueT::EnQueue(T x) { NodeT *s; s=new NodeT; s-data=x; //申请一个数据域为x的结点s s-next=NULL; if(front==NULL)//空队列,新结点既是队头,又是队尾 { front=rear=s; } else { rear-next=s; //将结点s插入到队尾 rear=s;} } template class T T LinkQueueT::DeQueue() { Node T *p; int x; if (front==NULL) throw “队空; p=front;

文档评论(0)

panguoxiang + 关注
实名认证
文档贡献者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档