标题:求教链表的基础问题
取消只看楼主
ALU
Rank: 1
等 级:新手上路
帖 子:11
专家分:0
注 册:2008-3-11
 问题点数:0 回复次数:2 
求教链表的基础问题
#include "stdafx.h"
#include<stdio.h>
#include<malloc.h>
#define LEN sizeof(struct line)
#define NULL 0
struct line
{
    int a;
    int b;
    int c;
    struct line *next;
};
int n;

struct line *creat(void)
{
    struct line *head;
    struct line *p1,*p2;
    n=0;
    p1=p2=(struct line *)malloc(LEN);
    scanf("%d",&p1->c);
    head=NULL;
    while(p1->c!=0)
    {n=n+1;
    if(n==1)head=p1;
    else p2->next=p1;
    p1=(struct line *)malloc(LEN);
    scanf("%d",&p1->c);
    }
    p2->next=NULL;
    return(head);
}
void main()
{ line *h;
h=creat();
   while(h!=NULL)
   {printf("%d",h->c);
    h=h->next;
   }
}

为何不能将链表完全输出而是只输出第一个数??
如何才能将链表完全输出?
搜索更多相关主题的帖子: 链表 line struct int head 
2008-03-11 11:53
ALU
Rank: 1
等 级:新手上路
帖 子:11
专家分:0
注 册:2008-3-11
得分:0 
为何这两个程序有不同的结果呢?
2008-03-11 16:01
ALU
Rank: 1
等 级:新手上路
帖 子:11
专家分:0
注 册:2008-3-11
得分:0 
谢了
2008-03-11 16:15



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-202897-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.244663 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved