大家帮我看看啊,链表问题,我没有积分,不好意思了
我想实现建立一个单链表,然后将其输出,但是为什么每个结点都输出2遍啊#include<stdio.h>
struct node{
int data;
struct node * next;
};
struct node * createList(){
struct node *head,*p,*r;
int x;
char ch;
p=(struct node*)(malloc(sizeof(struct node)));
p->next=NULL;//生成头结点
head=p;
r=p;//建立单链表表尾指针
while(ch!='#')/为建立与否的标识符
{
scanf("%d",&x);
p=(struct node*)(malloc(sizeof(struct node)));
p->data=x;
p->next=NULL;//产生新结点
r->next=p;//连接新结点
r=p;
ch=getchar();
}
return head;
}
int main()
{
struct node * head,*p;
head=createList();
p=head->next;
while(p->next!=NULL)
{
printf("%d->",p->data);
p=p->next;
}
printf("%d\n",p->data);
system("pause");
return 1;
}