C语言求帮忙

2024-11-20 20:12:44
推荐回答(1个)
回答1:

#include
#include
typedef struct node
{
int data;
struct node *next;
}*LinkList;

LinkList CreateList()
{
LinkList L,p,r;
int x;
r=L=(LinkList)malloc(sizeof(struct node));
L->next=NULL;
scanf("%d",&x);
while(x!=0)
{
p=(LinkList)malloc(sizeof(struct node));
p->data=x;
p->next=NULL;
r->next=p;
r=p;
scanf("%d",&x);

}
return L;
}

void PrintList(LinkList L)
{
L=L->next;
while(L)
{
printf("%d%s", L->data, L->next?"->":"\n");
L=L->next;
}
}
int swap(LinkList L)
{
LinkList t,p=L,p1=(*L).next,p2;

while(p1)
{
p2=p1->next;
if(!p2)
{
break;
}
p->next=p2;
t=p2->next;
p2->next=p1;
p1->next=t;
p=p1;
p1=p1->next;
}
}
int main()
{
LinkList L,pTemp;
L=CreateList();

printf("½»»»Ç°£º\n");
PrintList(L);
swap(L);
printf("½»»»ºó£º\n");
PrintList(L);
return 0;
}