| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 346 人关注过本帖
标题:单链表的输出不对,,,
只看楼主 加入收藏
灵魂活着
Rank: 1
等 级:新手上路
帖 子:12
专家分:0
注 册:2013-6-1
结帖率:33.33%
收藏
 问题点数:0 回复次数:1 
单链表的输出不对,,,
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
struct student
{
    char name[20];
    int age;
    float score;
    struct student *p;
};
int main()
{
    struct student *end,*next,*head,*q;
    int iage,i;
    float iscore;
    char iname[20];
    head=(struct student *)malloc(sizeof(struct student));
    if(head==NULL)
        printf("分配内存失败\n");
    else
    {
        scanf("%s%d%f",iname,&iage,&iscore);
        head->score=iscore;
        head->age=iage;
        strcpy(head->name,iname);
        head->p=NULL;
        end=head;
        for(i=0;i<3;i++)
        {
            next=(struct student*)malloc(sizeof(struct student));
            if(next==NULL)
                printf("分配内存不成功\n");
            else
            {
                 scanf("%s%d%f",iname,&iage,&iscore);
                 next->score=iscore;
                   next->age=iage;
                 strcpy(next->name,iname);
                 next->p=NULL;
                 head->p=next;
                 end=next;
            }
        }
    }
    q=head;
    printf("姓名    年龄     成绩\n");
    while(q->p!=NULL)
    {
        printf("%s    %d    %f\n",q->name,q->age,q->score);
        q=q->p;
    }
    printf("%s    %d    %f\n",q->name,q->age,q->score);
    return 0;
}
输入四个学生信息的时候,怎么只输出了头一个和最后一个的内容,帮我看看,谢谢!
搜索更多相关主题的帖子: include 
2013-06-30 13:20
灵魂活着
Rank: 1
等 级:新手上路
帖 子:12
专家分:0
注 册:2013-6-1
收藏
得分:0 
找到了,
  for(i=0;i<3;i++)
        {
            next=(struct student*)malloc(sizeof(struct student));
            if(next==NULL)
                printf("分配内存不成功\n");
            else
            {
                 scanf("%s%d%f",iname,&iage,&iscore);
                 next->score=iscore;
                   next->age=iage;
                 strcpy(next->name,iname);
                 next->p=NULL;
                 head->p=next;/*这里应该改成end->p=next*/
                 end=next;
            }
        }
还得多看看链表的内容,

如果风雨过后,你还在....成功了吗
2013-06-30 14:27
快速回复:单链表的输出不对,,,
数据加载中...
 
   



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

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