欢迎来到天天文库
浏览记录
ID:23579493
大小:80.00 KB
页数:12页
时间:2018-11-09
《数据结构实验1》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、一、实验目的1、学习线性表的顺序表示和实现,会进行顺序表的插入、删除、合并2、学习线性表的链式表示和实现,会进行链表的插入、删除、合并二、实验内容1、编程实现:(1)在顺序表ajcniydu的第三个位置插入p。(2)删除顺序表ajcniydu第三个位置的元素。2、编程实现将顺序表acdijtuy和cfklns合并。3、编程实现:(1)在链表asdfghjkl的第四个位置插入z。(2)删除顺序表asdfghjkl第四个位置元素。4、编程实现两个有序链表adfi和cefi的合并。三、实验步骤1.+2.代码:#include2、io.h>#includetypedefcharElemType;typedefstruct{ElemType*elem;intlength;intlistsize;}SqList;//定义结构体voidInitList(SqList&L){L.elem=(ElemType*)malloc(10*sizeof(ElemType));L.length=0;L.listsize=10;}//初始化第12页共12页voidCreateList(SqList&L,intn){printf("输入字符串:");int3、i=0;for(i;i4、5、i>L.length+1)printf("插入位置不合法!");else{ElemType6、*q=&(L.elem[i-1]);for(p=&(L.elem[L.length-1]);p>=q;--p)*(p+1)=*p;*q=e;++L.length;}}//插入intListDelete(SqList&L,inti)第12页共12页{if(i>L.length7、8、i<=0)printf("位置不合法");else{intj=i-1;for(j;j9、b,SqList&Lc){ElemType*pa,*pb,*pc,*pa_last,*pb_last;pa=La.elem;pb=Lb.elem;pa_last=pa+La.length-1;pb_last=pb+Lb.length-1;Lc.listsize=Lc.length=La.length+Lb.length;pc=Lc.elem=(ElemType*)malloc(Lc.length*sizeof(ElemType));while(pa<=pa_last&&pb<=pb_last){if(*pa>=*pb)*pc+10、+=*pa++;else*pc++=*pb++;}while(pa<=pa_last)*pc++=*pa++;while(pb<=pb_last)*pc++=*pb++;}//合并第12页共12页intmain(){SqListLa;InitList(La);CreateList(La,8);ElemTypee;inti;printf("输入插入位置及字符:");scanf("%d%c",&i,&e);ListInsert(La,i,e);Show(La);printf("");fflush(stdin);SqListLb11、;InitList(Lb);CreateList(Lb,8);Show(Lb);printf("输入删除位置:");intj;scanf("%d",&j);ListDelete(Lb,j);Show(Lb);printf("");fflush(stdin);SqListL1,L2,L3;InitList(L1);InitList(L2);CreateList(L1,8);Show(L1);fflush(stdin);第12页共12页CreateList(L2,6);Show(L2);Mergelist(L1,L2,L3);12、Show(L3);}3.+4.代码:#include#includetypedefcharElemType;typedefstructLNode{chara;第12页共12页ElemTypedata;structLNode*next;}L
2、io.h>#includetypedefcharElemType;typedefstruct{ElemType*elem;intlength;intlistsize;}SqList;//定义结构体voidInitList(SqList&L){L.elem=(ElemType*)malloc(10*sizeof(ElemType));L.length=0;L.listsize=10;}//初始化第12页共12页voidCreateList(SqList&L,intn){printf("输入字符串:");int
3、i=0;for(i;i4、5、i>L.length+1)printf("插入位置不合法!");else{ElemType6、*q=&(L.elem[i-1]);for(p=&(L.elem[L.length-1]);p>=q;--p)*(p+1)=*p;*q=e;++L.length;}}//插入intListDelete(SqList&L,inti)第12页共12页{if(i>L.length7、8、i<=0)printf("位置不合法");else{intj=i-1;for(j;j9、b,SqList&Lc){ElemType*pa,*pb,*pc,*pa_last,*pb_last;pa=La.elem;pb=Lb.elem;pa_last=pa+La.length-1;pb_last=pb+Lb.length-1;Lc.listsize=Lc.length=La.length+Lb.length;pc=Lc.elem=(ElemType*)malloc(Lc.length*sizeof(ElemType));while(pa<=pa_last&&pb<=pb_last){if(*pa>=*pb)*pc+10、+=*pa++;else*pc++=*pb++;}while(pa<=pa_last)*pc++=*pa++;while(pb<=pb_last)*pc++=*pb++;}//合并第12页共12页intmain(){SqListLa;InitList(La);CreateList(La,8);ElemTypee;inti;printf("输入插入位置及字符:");scanf("%d%c",&i,&e);ListInsert(La,i,e);Show(La);printf("");fflush(stdin);SqListLb11、;InitList(Lb);CreateList(Lb,8);Show(Lb);printf("输入删除位置:");intj;scanf("%d",&j);ListDelete(Lb,j);Show(Lb);printf("");fflush(stdin);SqListL1,L2,L3;InitList(L1);InitList(L2);CreateList(L1,8);Show(L1);fflush(stdin);第12页共12页CreateList(L2,6);Show(L2);Mergelist(L1,L2,L3);12、Show(L3);}3.+4.代码:#include#includetypedefcharElemType;typedefstructLNode{chara;第12页共12页ElemTypedata;structLNode*next;}L
4、
5、i>L.length+1)printf("插入位置不合法!");else{ElemType
6、*q=&(L.elem[i-1]);for(p=&(L.elem[L.length-1]);p>=q;--p)*(p+1)=*p;*q=e;++L.length;}}//插入intListDelete(SqList&L,inti)第12页共12页{if(i>L.length
7、
8、i<=0)printf("位置不合法");else{intj=i-1;for(j;j9、b,SqList&Lc){ElemType*pa,*pb,*pc,*pa_last,*pb_last;pa=La.elem;pb=Lb.elem;pa_last=pa+La.length-1;pb_last=pb+Lb.length-1;Lc.listsize=Lc.length=La.length+Lb.length;pc=Lc.elem=(ElemType*)malloc(Lc.length*sizeof(ElemType));while(pa<=pa_last&&pb<=pb_last){if(*pa>=*pb)*pc+10、+=*pa++;else*pc++=*pb++;}while(pa<=pa_last)*pc++=*pa++;while(pb<=pb_last)*pc++=*pb++;}//合并第12页共12页intmain(){SqListLa;InitList(La);CreateList(La,8);ElemTypee;inti;printf("输入插入位置及字符:");scanf("%d%c",&i,&e);ListInsert(La,i,e);Show(La);printf("");fflush(stdin);SqListLb11、;InitList(Lb);CreateList(Lb,8);Show(Lb);printf("输入删除位置:");intj;scanf("%d",&j);ListDelete(Lb,j);Show(Lb);printf("");fflush(stdin);SqListL1,L2,L3;InitList(L1);InitList(L2);CreateList(L1,8);Show(L1);fflush(stdin);第12页共12页CreateList(L2,6);Show(L2);Mergelist(L1,L2,L3);12、Show(L3);}3.+4.代码:#include#includetypedefcharElemType;typedefstructLNode{chara;第12页共12页ElemTypedata;structLNode*next;}L
9、b,SqList&Lc){ElemType*pa,*pb,*pc,*pa_last,*pb_last;pa=La.elem;pb=Lb.elem;pa_last=pa+La.length-1;pb_last=pb+Lb.length-1;Lc.listsize=Lc.length=La.length+Lb.length;pc=Lc.elem=(ElemType*)malloc(Lc.length*sizeof(ElemType));while(pa<=pa_last&&pb<=pb_last){if(*pa>=*pb)*pc+
10、+=*pa++;else*pc++=*pb++;}while(pa<=pa_last)*pc++=*pa++;while(pb<=pb_last)*pc++=*pb++;}//合并第12页共12页intmain(){SqListLa;InitList(La);CreateList(La,8);ElemTypee;inti;printf("输入插入位置及字符:");scanf("%d%c",&i,&e);ListInsert(La,i,e);Show(La);printf("");fflush(stdin);SqListLb
11、;InitList(Lb);CreateList(Lb,8);Show(Lb);printf("输入删除位置:");intj;scanf("%d",&j);ListDelete(Lb,j);Show(Lb);printf("");fflush(stdin);SqListL1,L2,L3;InitList(L1);InitList(L2);CreateList(L1,8);Show(L1);fflush(stdin);第12页共12页CreateList(L2,6);Show(L2);Mergelist(L1,L2,L3);
12、Show(L3);}3.+4.代码:#include#includetypedefcharElemType;typedefstructLNode{chara;第12页共12页ElemTypedata;structLNode*next;}L
此文档下载收益归作者所有