单链表排序
合集下载
相关主题
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
#include
using namespace std;
struct Cnode
{
int data;
Cnode *next;
};
Cnode *creat(Cnode *head)
{
Cnode *pnew,*pcur;
pcur=head;
head->next=NULL;
pnew=new Cnode;
cout<<"请输入你的元素:";
cin>>pnew->data;
pcur->next=pnew;
pcur=pnew;
while(pnew->data!=0)
{
pnew=new Cnode;
cin>>pnew->data;
pcur->next=pnew;
pcur=pnew;
}
pcur->next=NULL;
return head;
}
Cnode *order(Cnode *head) {
Cnode *p,*q;
int big;
p=head->next;
q=p->next;
while(q!=NULL)
{
if(p->data
{
big=p->data;
p->data=q->data;
q->data=big;
}
q=q->next;
if(q=NULL)
{
p=p->next;
q=p->next;
}
}
return head;
}
void show(Cnode *head)
{
Cnode *ph;
ph=head->next;
while(ph!=NULL)
{
cout<
ph=ph->next;
}
}
void main()
{
Cnode *head,*op,*ip;
head=new Cnode;
head->next=NULL;
op=creat(head);
ip=order(op);
show(ip);
}