2010级数据结构验证性实验指导书(新版)
更新时间:2023-03-15 23:41:01 阅读量: 教育文库 文档下载
- 数据结构验证性实验推荐度:
- 相关推荐
数据结构验证性实验指导书
实验一 线性表的顺序存储实验
一、实验目的
1、掌握用Visual C++6.0上机调试顺序表的基本方法
2、掌握顺序表的基本操作,插入、删除、查找、以及有序顺序表的合并等算法的实现 二、实验内容
下面是顺序表的部分基本操作实现的算法,请同学们自己设计主函数和部分算法,调用这些算法,完成下面的实验任务。
/*常用的符号常量定义*/ # define OK 1 # define ERROR 0 # define MAXSIZE 10
#define LIST_INIT_SIZE 10 #define LISTINCREMENT 10 #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define SUCCESS 1 #define UNSUCCESS 0 #define DUPLICATE -1
#define NULLKEY 0 // 0为无记录标志 #define N 10 // 数据元素个数 #define EQ(a,b) ((a)==(b)) #define LT(a,b) ((a)<(b)) #define LQ(a,b) ((a)<=(b))
/* 定义ElemType为int或别的自定义类型 */ typedef int ElemType;
/* 顺序存储类型 */ typedef struct { int *elem; int length; int listsize; }SqList;
/*构造一个空线性表算法*/
int InitList_Sq(SqList &L) //InitList_Sq() function { //Inititial a Sq_List L.elem=(int *)malloc(LIST_INIT_SIZE *sizeof(int)); if (!L.elem) return(0); L.length=0; L.listsize=LIST_INIT_SIZE; return(1);
- - 1
数据结构验证性实验指导书
}//end of InitList_Sq() function
/* 从顺序表中查找与给定元素值相同的元素在顺序表中的位置 */
int LocateElem_Sq(SqList L, ElemType e) //LocateElem_Sq() sub-function { int i=1;
int *p=L.elem;
while(i<=L.length&&*p++!=e) ++i;
if(i<=L.length) return (i); else
return (ERROR); } //LocateElem_Sq() end
/* 向顺序表中插入元素 */
int ListInsert_sq(SqList &L,int i,int e)//ListInsert_sq() { if(i<1||i>L.length+1) //i (location) is illegal { cout <<\ getch();
return (ERROR); }
if(L.length>=L.listsize) //insert into the end of the Sqlist { int *Newbase;
Newbase=(int *)realloc(L.elem,(L.listsize+LISTINCREMENT)*sizeof(int)); if(!Newbase)
{ cout<<\ getch(); return (ERROR); }
L.elem=Newbase;
L.listsize+=LISTINCREMENT; }
int *p,*q;
q=&(L.elem[i-1]); //q point at the element before the inserted one for(p=&(L.elem[L.length-1]);p>=q;--p) //move the element *(p+1)=*p; *q=e;
++L.length; return (OK);
} //ListInser_sq() end
/* 从顺序表中删除元素 */
void ListDelete_Sq(SqList &L,int i, int &e) //ListDelete_Sq() function {
int *p,*q;
if((i<1)||(i>L.length))
{ cout<
- - 2
数据结构验证性实验指导书
}
p=&(L.elem[i-1]); e=*p;
q=L.elem+L.length-1; for (++p;p<=q;++p) *(p-1)=*p; --L.length;
cout<<\}//end of ListDelete_Sq() function
/* 有序顺序表的合并 */
int Merge_Sq(SqList &A,SqList &B,SqList &C) //Merge_Sq() function { //Merge the SqList A and B to C
C.listsize=C.length=A.length+B.length;
C.elem=(ElemType *)malloc(C.listsize*sizeof(ElemType)); if(!C.elem) { cout<<\ return(0); };
int i=0,j=0; //i and j is the Subscript of A.elem[] and B.elem [] int k=0; //k is the Subscript of C.elem[] while((i=B.length if(A.elem [i]<=B.elem [j]) { C.elem [k]=A.elem [i]; i++;k++; }//end of if else { C.elem [k]=B.elem [j]; j++;k++; }//end of else
while(i
while (j cout<<\ return(1); }//end of Merge_Sq() function 1、顺序表基本操作的实现。要求生成顺序表时,可以键盘上读取元素,用顺序存储结构实现存储。 2、已知顺序表la和lb中的数据元素按非递减有序排列,将la和lb表中的数据元素,合并成为一个新的顺序表lc,lc中的数据元素仍按非递减有序排列,并且不破坏la和lb - - 3 数据结构验证性实验指导书 表。 3.从有序顺序表A中删除那些在顺序表B和顺序表C中都出现的元素. 4、将一顺序存储的线性表(设元素均为整型量)中所有零元素向表尾集中,其他元素则顺序向表头方向集中。 若输入:1 2 3 0 0 5 0 4 7 8 则输出:1 2 3 5 4 7 8 0 0 0 实验二 单链表实验 一、实验目的 1、掌握用Visual C++6.0上机调试单链表的基本方法 2、掌握单链表的插入、删除、查找、求表长以及有序单链表的合并算法的实现 3、进一步掌握循环单链表的插入、删除、查找算法的实现 二、实现内容 下面是链表的部分基本操作实现的算法,请同学们自己设计主函数和部分算法,调用这些算法,完成下面的实验任务。 /* 定义ElemType为int或别的自定义类型 */ typedef int ElemType; /* 链式存储类型 */ typedef struct LNode { ElemType data; struct LNode *next; }LNode,*LinkList; /* 单链表的取元素*/ int GetElem_L(LinkList L,int i,int &e) //GetElem_L() function {//L is the HeadPointer of LinkList with HeadNode,when the No.i exist,assign the //value to variable e and return \ LNode *p; int j=1; p=L->next; while(p&&jnext;++j;} if(!p||j>i) { cout<<\ getch(); exit(0); }//end of if e=p->data; return (e); }//end of GetElem_L() function /*单链表的插入元素*/ - - 4 数据结构验证性实验指导书 int ListInsert_L(Linklist &L,int i,int e) //ListInsert_L() sub-function { LNode *p=L; int j=0; while(p&&j if(!p||j>i-1) //out of location { cout<<\ return (ERROR); } LNode *s; s=(Linklist)malloc(sizeof(LNode)); //create new LNode s->data=e; s->next=p->next; p->next=s; return (OK); } //ListInsert_L() end /*单链表的删除元素*/ int ListDelete_L(LinkList &L,int i,int &e) //ListDelete_L() function { //Delete the NO.i element of LinkList and return by variable e LNode *p,*q; int j=0; p=L; while(p->next&&j if(!p||j>i-1) { cout<<\ getch(); return(0); } q=p->next; p->next=q->next; //delete the NO.i Node e=q->data; free(q); return (e); }//end of ListDelete() function /* 单链表的建立(头插法)*/ void CreateList_L(LinkList &L,int n) //CreateList_L() function { //To Creatre a LinkList L with HeadNode int i; LNode *p; L=(LinkList)malloc(sizeof(LNode)); L->next=NULL; cout<<\ for(i=n;i>0;--i) { - - 5
正在阅读:
传统绘画10-28
《现代儿童趣味美术》系列06-08
数字存储示波器毕业设计 - 图文05-29
半导体器件物理7_施敏05-29
梦想作文150字07-08
四轮铸件项目可行性研究报告(发改立项备案+2013年最新案例范文)详细编制方案01-26
爸妈老了,这些话请不要说07-21
南师期末分析化学试卷1(含答案)05-02
- exercise2
- 铅锌矿详查地质设计 - 图文
- 厨余垃圾、餐厨垃圾堆肥系统设计方案
- 陈明珠开题报告
- 化工原理精选例题
- 政府形象宣传册营销案例
- 小学一至三年级语文阅读专项练习题
- 2014.民诉 期末考试 复习题
- 巅峰智业 - 做好顶层设计对建设城市的重要意义
- (三起)冀教版三年级英语上册Unit4 Lesson24练习题及答案
- 2017年实心轮胎现状及发展趋势分析(目录)
- 基于GIS的农用地定级技术研究定稿
- 2017-2022年中国医疗保健市场调查与市场前景预测报告(目录) - 图文
- 作业
- OFDM技术仿真(MATLAB代码) - 图文
- Android工程师笔试题及答案
- 生命密码联合密码
- 空间地上权若干法律问题探究
- 江苏学业水平测试《机械基础》模拟试题
- 选课走班实施方案
- 指导书
- 数据结构
- 新版
- 验证
- 实验
- 2010
- 四川省2015年高职单招数学试卷
- “迈克尔逊干涉仪”实验报告
- SQL实验3
- 河北省县域村庄空间布局规划编制要点实施细则(试行)
- 进出口贸易实务总复习题chen
- 2011年奥数练习考考你的眼力 - 图文
- 管理者的五项基本作业
- 节假日、休息日及夜间应急预案1
- 建筑工程专业实习工作总结
- 人大工作自查报告
- 2018年江苏省十三市中考数学试卷压轴题及详细答案解析
- 基础会计 第1~4章 题和答案
- 股权委托代管协议范本 新版
- 公司2018党支部年度工作计划例文与公司2018党支部年度工作计划表汇编 doc
- 物理化学4答案
- 八年级下册历史期末考试模拟测试卷(二)
- 2018年中国高尔夫行业调查与未来报告目录
- 反对本本主义学习心得-心得体会模板
- 中国药科大学微生物大题预测,各章重点
- 台湾航空邮票目录(大图)