单链表的排序(冒泡排序)

#include<stdio.h>
#include<stdlib.h>
typedef struct node{
 int num;
 struct node *next;
}node;
struct node* creat(){
 node *L;
 L=(node*)malloc(sizeof(node));
 L->next=NULL;
 return L;
}
struct node *in(node *L){
 node *p;
 int x;
 printf("Enter a bunch of x(x>0):");
 scanf("%d",&x);
 while(x>0){
  p=(node*)malloc(sizeof(node));
  p->num=x;
  p->next=L->next;
  L->next=p;
     scanf("%d",&x);
 }
 return L;
}
struct node *reset(node *L){
 int i,j,n=0,temp;
 node *p,*s;
 p=L->next;
 while(p){
  n++;
  p=p->next;
 }
 for(i=1;i<n;i++){
  for(j=0,p=L->next;j<n-i;j++,p=p->next){
   if(p->num>p->next->num){
    temp=p->num;
    p->num=p->next->num;
    p->next->num=temp;
   }
  }
 }
 return L;
}
void print(node *L){
 node *p;
 p=L->next;
 while(p){
  printf("->%d",p->num);
  p=p->next;
 }
 printf("\n");
}
int main()
{
 node *L;
 L=creat();
 L=in(L);
 printf("排序前:");
 print(L);
 L=reset(L);
 printf("排序后:");
 print(L);
 return 0;
 } 

​​​​​​​

单链表的排序,就简单的结合了单链表的特征和冒泡排序结合,这种简单的数据域不需要把节点拆下来再放回去,直接对数据域进行交换即可。

​​​​​​​

(个人的想法观点不妥之处大佬指点,轻喷!)

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值