ImageVerifierCode 换一换
格式:DOCX , 页数:39 ,大小:516.72KB ,
资源ID:19500481      下载积分:3 金币
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.bdocx.com/down/19500481.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录   QQ登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(数据结构第三章到第九章练习题答案文档格式.docx)为本站会员(b****5)主动上传,冰豆网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰豆网(发送邮件至service@bdocx.com或直接QQ联系客服),我们立即给予删除!

数据结构第三章到第九章练习题答案文档格式.docx

1、 LinkNode* first;/链表头指针/ stack.h#include .list.h class stack stack(void); stack(void); LinkNode* top; friend class List; void Push(const int& bool Pop(); bool IsEmpty(void)return(top=NULL)?true:false;/ list.cppStdAfx.h#using List:List(const int& x) first= new LinkNode(x);List(void) first= new LinkNo

2、de;List(void) makeEmpty();void List:input(int n) LinkNode * newNode; first=new LinkNode; for(int i=0;ilink=first-link; first-link=newNode; output(void) LinkNode *current=first- while(current!=NULL) coutdata coutlink!=NULL) p=first-link=p- delete p;inverse(void) stack s; LinkNode *p=first-link,*q; wh

3、ile(p! s.Push(p-data); p=p- p=first- while(!s.IsEmpty() q=s.top; p-data=q-data; s.Pop();/ Stack.cpp.stack.hstack:stack(void) top(NULL)stack(void)/入栈void stack:Push(const int& top=new LinkNode(x,top);/出栈bool stack:Pop() if(IsEmpty()=true) return false; LinkNode *p=top; top=top- delete p; return true;

4、/Main.cppstdafx.husing namespace System;int _tmain() srand(time(NULL); List l; /调用输入函数 l.input(10); /调用输出函数 l.output();调用逆转函数 l.inverse(); return 0;3.12编写一个算法,将一个非负的十进制整数N转换为另一个基为B的B进制数。/stack.hvoid Push(const int& bool Pop(int&/stack.cpp Pop(int& x=p-/main.cpp int n, m, temp,yu;输入十进制数: cin输入基数:m; s

5、tack l; while(n!=0 & m!=0) temp=n%m; n=n/m; l.Push(temp);l.IsEmpty() l.Pop(yu);yu; coutint f(int n1,int n2); int n1,n2;Enter the first positive number: n1;Enter the second positive number: n2; if(n10 & n20) n1 和 n2 的最大公约数是: f( n1, n2) else非法数据int f(int n1,int n2) int t; while(n2! t= n1 % n2; n1= n2;

6、 n2= t; return n1;3.23假设以数组Qm存放循环队列中的元素,同时设置一个标志tag,以tag=0和tag=1来区别在对头指针(front)和对尾指针(rear)相等时,队列状态为“空”还是“满”。试编写与此结构相应的插入(EnQueue)和删除(DeQueue)算法。/ stdafx.h#include/SeqQueue.hclass SeqQueue SeqQueue(int size=10); SeqQueue(void); int rear,front,tag; int *element; int maxSize; bool EnQueue(const int& bo

7、ol DeQueue(void); bool IsEmpty(void)return (front=rear & tag=0)? bool IsFull(void)return (front=rear & tag=1)? friend ostream& operator (ostream& os,SeqQueue& Q);/SeqQueue.cpp.SeqQueue.hSeqQueue:SeqQueue(int size)rear(0),front(0),tag(0),maxSize(size) element=new intmaxSize;SeqQueue(void) delete elem

8、ent;bool SeqQueue:EnQueue(const int& if(IsFull()=true) return false; elementrear=x; rear=(rear+1) % maxSize; tag=1;DeQueue(void) front=(front+1) % maxSize; tag=0;ostream& Q) int num; if(Q.front=Q.rear & Q.tag=1) num=Q.maxSize; num=(Q.rear-Q.front+Q.maxSize)%Q.maxSize;num; os(i+Q.front)%Q.maxSizeQ.el

9、ement(i+Q.front)%Q.maxSizet return os;srand(time(NULL); SeqQueue q;Call the EnQueue function9; q.EnQueue(rand()%100);qCall the DeQueue function q.DeQueue();第四章数组、串与广义表4.12若矩阵Am*n中的某一元素Aij是第i行中的最小值,同时又是第j列中的最大值,则称此元素为该矩阵的一个鞍点。假设以二维数组存放矩阵,试编写一个函数,确定鞍点在数组中的位置(若鞍点存放在时),并分析该函数的时间复杂度。 int A1010,rsize,row,

10、column,maxC,minD,max,min; for(row=0;row10;row+) for (column=0;columncolumn+) Arowcolumn=rand()%(100/(10-row)+100/(10-column); coutArowcolumn for(rsize=0;rsizeArsizecolumn) minD=column; min=ArsizeminD; maxC=0; max=A0minD; for(row=1; if(maxArowminD) maxC=row; max=ArowminD; if(max=min) Arrayrsize+1minD

11、+1#ifndef stdafx_h#define stdafx_htemplatestruct LinkNode T data; LinkNode(const T&#endifclass CCStack CCStack(void); CCStack(void); LinkNode* top; void Push(const T& T getTop();.cstack.hCCStackCCStack(void)CCStack(void)void CCStackPush(const T& top=new LinkNode(x,top);bool CCStackT CCStack return x

12、;.cstack.cpp string a; bool temp=true; int i=0; CCStack st;a; while(ai!=0) st.Push(ai); i+; i=0; if(ai=st.getTop() st.Pop(); i+; else temp=false; break; if(temp)此字符是回文此字符不是回文4.15编写一个算法frequency,统计在一个输入字符串中各个不同字符出现的频度。用适当的测试数据来验证这个算法。 int k,*num; char *A; k=a.length(); A = new chark; num = new intk; frequency(a, A, num,k=0 ); for ( int i = 0; i k; i+ )Ainumi个 delete A; delete num;void frequency( string s, char A , int C , int &k ) int i, j, len = s.length( ); A0 = s0; C0 = 1; /种类数 k = 1; for ( i = 1; len; Ci = 0; len

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1