如何向一个链表中输入多个元素数据,望高手给出一个代码,小弟新手。。。 10
请高手给出一个代码,实现向一个链表中,输入多个元素。。。要完整代码。。刚接触数据结构。。。不懂。。。自己编的代码,编译无误,输入就充满了问题,输入一个,程序就停止运行了。...
请高手给出一个代码,实现向一个链表中,输入多个元素。。。要完整代码。。刚接触数据结构。。。不懂。。。自己编的代码,编译无误,输入就充满了问题,输入一个,程序就停止运行了。。。。望高手给出示例。。小弟先谢过了。。。
展开
2个回答
展开全部
#include <stdio.h>
#include <stdlib.h>
#define NULL 0
#define LEN sizeof(struct student)
struct student
{
long num;
float score;
struct student *next;
};
int n;
struct student *create();
void print(struct student *head);
void main()
{
struct student *p;
p=create();
print(p);
}
struct student *create()
{
struct student *head,*p1,*p2;
n=0;
p1=p2=(struct student *)malloc(LEN);
scanf("%ld,%f",&p1->num,&p1->score);
head=NULL;
while(p1->num!=0)
{
n=n+1;
if(n==1)
head=p1;
else
p2->next=p1;
p2=p1;
p1=(struct student *)malloc(LEN);
scanf("%ld,%f",&p1->num,&p1->score);
}
p2->next=NULL;
return head;
}
void print(struct student *head)
{
struct student *p;
p=head;
printf("链表数:%d\n",n);
while(p!=NULL)
{
printf("%6ld% 6f\n",p->num,p->score);
p=p->next;
}
}
#include <stdlib.h>
#define NULL 0
#define LEN sizeof(struct student)
struct student
{
long num;
float score;
struct student *next;
};
int n;
struct student *create();
void print(struct student *head);
void main()
{
struct student *p;
p=create();
print(p);
}
struct student *create()
{
struct student *head,*p1,*p2;
n=0;
p1=p2=(struct student *)malloc(LEN);
scanf("%ld,%f",&p1->num,&p1->score);
head=NULL;
while(p1->num!=0)
{
n=n+1;
if(n==1)
head=p1;
else
p2->next=p1;
p2=p1;
p1=(struct student *)malloc(LEN);
scanf("%ld,%f",&p1->num,&p1->score);
}
p2->next=NULL;
return head;
}
void print(struct student *head)
{
struct student *p;
p=head;
printf("链表数:%d\n",n);
while(p!=NULL)
{
printf("%6ld% 6f\n",p->num,p->score);
p=p->next;
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2010-05-21
展开全部
原链表A;
输入的元素也作为一个链表B,在A中插入链表B的首尾就好了啊。
如果链表插入都不会。建议先学着做插入单一元素。道理是一样的。
代码自己写出来的才能学到更多东西。重要的是思路。
输入的元素也作为一个链表B,在A中插入链表B的首尾就好了啊。
如果链表插入都不会。建议先学着做插入单一元素。道理是一样的。
代码自己写出来的才能学到更多东西。重要的是思路。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询