请让我知道这段代码有什么问题,其中我在开头添加了一些节点然后显示它们,进一步尝试排序,但我没有得到排序结果......谢谢:)
#include <stdio.h>
#include <conio.h>
#include <malloc.h>
struct node
{
int data;
struct node *link;
};
void append(struct node **q,int num)
{
struct node *temp;
temp=malloc(sizeof(struct node));
temp->data=num;
temp->link=*q;
*q=temp;
}
void display(struct node *q)
{ struct node *temp;
temp=q;
printf("\n");
while(q!=NULL)
{
printf(" %d",q->data);
q=q->link;
}
q=temp;
}
void sort(struct node *q)
{
struct node *temp1, *temp2; int i,j,temp3;
temp1=q;
temp2=q->link;
for(i=0;i<6;i++)
{
for(j=0;j<6-i;j++)
{
if(temp1->data>temp2->data)
{
temp3=temp1->data;
temp1->data=temp2->data;
temp2->data=temp3;
}
temp2=temp2->link;
}
temp1=temp1->link;
temp2=temp1->link;
}
}
void main()
{
struct node *p;
p=NULL;
append(&p,7);
append(&p,5);
append(&p,9);
append(&p,2);
append(&p,8);
display(p);
sort(p);
display(p);
}