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

加入VIP,省得不是一点点
 

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

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

下载须知

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

版权提示 | 免责声明

本文(《数据结构》实验报告(单链表实验、二叉树实验、排序实验).docx)为本站会员(文****钱)主动上传,文客久久仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知文客久久(发送邮件至hr@wenke99.com或直接QQ联系客服),我们立即给予删除!

《数据结构》实验报告(单链表实验、二叉树实验、排序实验).docx

1、实验一 单链表实验(一 ) 实 验 目 的1. 理解线性表的链式存储结构。2. 熟练掌握动态链表结构及有关算法的设计。3. 根据具体问题的需要,设计出合理的表示数据的链表结构,并设计相关算法。(二 ) 实 验 任 务编写算法实现下列问题的求解1. 求链表中第 i 个结点的指针(函数) ,若不存在,则返回 NULL。2. 在第 i 个结点前插入值为 x 的结点。3. 删除链表中第 i 个元素结点。4. 在一个递增有序的链表 L 中插入一个值为 x 的元素,并保持其递增有序特性。5. 将单链表 L 中的奇数项和偶数项结点分解开,并分别连成一个带头结点的单链表,然后再将这两个新链表同时输出在屏幕上,

2、并保留原链表的显示结果,以便对照求解结果。6. 求两个递增有序链表 L1 和 L2 中的公共元素,并以同样方式连接成链表 L3。(三 ) 主 要 仪 器 设 备PC 机,Windows 操作平台,Visual C+(四 ) 实 验 分 析顺序表操作:定义一个顺序表类,该类包括顺序表的存储空间、存储容量和长度,以及构造、插入、删除、遍历等操作的方法(五 ) 源 程 序头文件 文件名:linklist.h#includeusing namespace std;struct nodeint data;node *next;class listpublic:list();int length()con

3、streturn count; /求链表长度list();void create(); /链表构建,以 0 为结束标志void output(); /链表输出int get_element(const int i)const; /按序号取元素node *locate(const int x) const; /搜索对应元素int insert(const int i,const int x); /插入对应元素int delete_element(const int i); /删除对应元素node *get_head()return head; /读取头指针void insert2(const i

4、nt x);friend void SplitList(list L1, listfriend void get_public(list L1, list L2, list private:int count;node *head;list:list()head=new node;head-next=NULL;count=0;void list:create() /链表构建,以 0 为结束标志int x;coutx;node *rear=head;while(x!=0)count+;node *s=new node;s-data=x;rear-next=s;rear=s;rear-next=N

5、ULL;cinx;void list:output()node *p=head-next;coutdatanext;coutnext;j=1;while(p!=NULL j+;if(p=NULL) return 0;elsereturn x=p-data;return 1;node *list:locate(const int x)constnode *p=head-next;while(p!=NULL)if(p-data=x)return p;else p=p-next;return NULL;int list:insert(const int i,const int x) /实验 2nod

6、e *p=head;int j=0;while(j!=i-1j+;if(icount+1)return 0;node *s=new node;s-data=x;s-next=p-next;p-next=s;count+;return 1;int list:delete_element(const int i) /实验 3node *p=head;int j=0;while(j!=i-1j+;if(icount)return 0;node *u=p-next;p-next=u-next;delete u;count-;return 1;void list:insert2(const int x)

7、 /实验 4node* p,*q;p=head;while(p-next!=NULL if (p-next=NULL | p-next-datax)q=new node;q-data=x;q-next=p-next;p-next=q;count+;list:list()while(head-next!=NULL) delete_element(1);主程序#include #include“linklist.h“using namespace std;void SplitList(list L1, listfor(int i = 1; p1 != NULL; i+)if(i % 2) L2.i

8、nsert(L2.count+1,p1-data);else L3.insert(L3.count+1,p1-data);p1=p1-next;L1.output();L2.output();L3.output();void get_public(list L1,list L2,list while (p1!=NULL else if (p1-datap2-data)p2=p2-next;elseL3.insert(L3.count+1,p1-data);p1=p1-next;p2=p2-next;int main()list L1;int i,x;couti;coutxi;L1.insert(i,x);L1.output();couti;

Copyright © 2018-2021 Wenke99.com All rights reserved

工信部备案号浙ICP备20026746号-2  

公安局备案号:浙公网安备33038302330469号

本站为C2C交文档易平台,即用户上传的文档直接卖给下载用户,本站只是网络服务中间平台,所有原创文档下载所得归上传人所有,若您发现上传作品侵犯了您的权利,请立刻联系网站客服并提供证据,平台将在3个工作日内予以改正。