问题多多 p1=(struct nb *)malloc(LEN);
scanf("%d,%f",p1->xh,p1->cj);
这里要用scanf("%d,%f",&p1->xh,&p1->cj);
scanf函数的引号里面的逗号输入的时候要输void main()
{
struct nb *b;
b=p();
sc(b);
}
这里的函数p()的返回值是在p里面定义的,调用完就被释放了,不能这样做 ,要在main里面定义,然后在p函数里用二维指针修改
还有,链表用完了要释放内存,加了一个release函数
这是我改完的#include<stdio.h>
#include<stdlib.h>
#define LEN sizeof(struct nb)
struct nb
{
long xh;
float cj;
struct nb *next;
};
void p(struct nb **head)
{
struct nb *p1,*p2;
p1=p2=(struct nb *)malloc(LEN);
scanf("%d%f",&p1->xh,&p1->cj);
while(p1->xh)//第一个数字输入0时结束
{
if((*head)==NULL)
(*head)=p1;
else
p2->next=p1;
p2=p1;
p1=(struct nb *)malloc(LEN);
scanf("%d%f",&p1->xh,&p1->cj);
}
p2->next=NULL;
}
void sc(struct nb *head)
{
struct nb *p;
p=head;
if(head!=NULL)
{
do
{
printf("%d %f\n",p->xh,p->cj);
p=p->next;
}
while(p!=NULL);
}
}
void release(struct nb **head)
{
struct nb *temp;
while((*head)!=NULL)
{
temp=*head;
*head=(*head)->next;
free(temp);
}
}
int main(void)
{
struct nb *head=NULL;
p(&head);
sc(head);
release(&head);
return 0;
}
|