题目:先创建一个链表(链表中各结点未按学号由小到大排序),然后调用sort函数,将链表中各结点按学号由小到大排序。
法一(超时)
这个题我一开始的思路是利用冒泡的思想,当当前结点比next结点大的时候,交换两者next所指向内容。
比如链表1-5-4-6 , 当指针p指向5所在结点的时候,发现p->next的num小于当前的num,这时候我要令p1=p->next(4所在结点), 让(5)p->next指向 (6)p1->next, 再让 (4)p1->next指向(5)p,最后再让(1)pre接上(4)p1,这样,链表的结点顺序就变成了 1-4-5-6。(注意如果是第一位的话就不用使用pre指针)
#include "stdio.h"
#include "malloc.h"
#define LEN sizeof(struct student)
struct student
{
long num;
int score;
struct student *next;
};
struct student *create(int n)
{
struct student *head=NULL,*p1=NULL,*p2=NULL;
int i;
for(i=1;i<=n;i++)
{
p1=(struct student *)malloc(LEN);
scanf("%ld",&p1->num);
scanf("%d",&p1->score);
p1->next=NULL;
if(i==1) head=p1;
else p2->next=p1;
p2=p1;
}
return(head);
}
void print(struct student *head)
{
struct student *p;
p=head;
while(p!=NULL)
{
printf("%8ld%8d",p->num,p->score);
p=p->next;
printf("\n");
}
}
struct student *insert(struct student *head, struct student *stud)
{
struct student *p0,*p1,*p2;
p1=head; p0=stud;
if(head==NULL)
{
head=p0;}
else