- 1、本文档共8页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
基于链表的排序和查找算法的设计与实现
基于链表的排序和查找算法的设计与实现
摘要: 该程序的主要功能是对以链表为存储结构的数值型数据进行查找和排序。
关键字: 存储结构 链表 排序。
0.引言
查找是求出一个数据元素在序列中的索引或指针,将其返回,本程序返回的为指针。
排序是将一个数据元素(或记录)的任意序列,重新排列成一按关键字(或排序码)有序的序列,以便于进行数据查询。
1.需求分析
本程序是基于链表的排序和查找,所以数据的存储结构为连式存储结构。文件中记录用节点来表示,其物理位置任意,节点之间用指针相连,链表结构的有点在于排序是无需移动记录,只需修改相应记录的指针即可。
排序本程序用交换排序。
2.数据结构设计
2.1建立单链表
2.1.1 链表节点定义:
整形元素 data存储数据,节点指针 next指向下一个节点
typedef struct Cnode
{
int data;
struct Cnode *next;
}Cnode;
2.1.2 链表数据的存储:
函数insert()void insert(Cnode *p,int e)
{
Cnode *s=new Cnode;
s-data=e;
s-next =NULL ;
p-next =s;
}
因为insert()int i,n,f,a[100];//={3,1,7,2,5,6,4};
Cnode *h= new Cnode;
Cnode *r,*p,*s;
h-data=0;
h-next =NULL;
r=h;
cout请输入数据数目:;
cinn;
for(i=0;in;i++)
{
couti+1: ;
cina[i];
insert(h,a[i]);
h=h-next ;
}
h=r;void sort(Cnode *h)//排序
{
int len=count(h);
for(int j=0;jlen;j++)
{
int flag=0; //排序完成与否标志
Cnode *p=h,*tem,*cur=h-next ,*nex=cur-next,*pre=h;
while(cur-next !=NULL)
{
if(cur-data nex-data)
{
tem=nex-next;
cur-next=tem;
nex-next=cur;
pre-next=nex;
}
pre=cur;
cur=nex;
nex=nex-next ;
}
}
}
排序中所要用的计算链表长度count()int count(Cnode *p)
{int i=0;
Cnode *r=p;
while(r-next!=NULL)
{r=r-next ;
i++;}
return i;
}
3.2数据元素的查找
Cnode *find(Cnode *p,int e)
{
Cnode *r;
r=p;
while(r!=NULL r-data!=e)
{r=r-next ;}
return r;
}
3.3 程序主函数
void main()
{
int i,n,f,a[100];
Cnode *h= new Cnode;
Cnode *r,*p,*s;
h-data=0;
h-next =NULL;
r=h;
cout请输入数据数目:;
cinn;
for(i=0;in;i++)
{
couti+1: ;
cina[i];
insert(h,a[i]);
h=h-next ;
}
h=r;
cout请输要查找的元素: ;
cinf;
cout排序前数据顺序:;
for(i=0;in;i++)
{h=h-next ;
couth-data ;
}
coutendl;
h=r;
s=find(h,f);
cout要查元素的下一元素的数据: ;
if(s-next !=NULL)
couts-next-dataendl ;
else
cout所查元素在队尾!;
sort(h);
cout排序后数据顺序:;
f
文档评论(0)