| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 472 人关注过本帖
标题:使用链表该如何输入输出?
只看楼主 加入收藏
henji
Rank: 1
等 级:新手上路
帖 子:227
专家分:0
注 册:2009-4-19
结帖率:38.67%
收藏
 问题点数:0 回复次数:0 
使用链表该如何输入输出?
#include "stdio.h"
#include "malloc.h"
#define NULL 0
struct student
{
    int num;
    int score;
    struct student *next;
};
int n;
struct student * create()//这个程序为什么不能够输入和输出,代码麻烦帮我修改一下?
{
    struct student a,b,c,*p,*head;
    p=(struct student *)malloc(sizeof(struct student));
    scanf("%d%d",&p->num,p->score);
    head=NULL;
    while(p->num=NULL)
    {
        n=n+1;
        if(n==1)
            head=p;
        else
            p->next=p;
        p=(struct student *)malloc(sizeof(struct student));
        scanf("%d%d",&p->num,&p->score);
    }
    p->next=NULL;
    return (head);
}

void print(struct student *head)
{
    struct student *p;
    printf("\nNow,These %d records are:\n",n);
    p=head;
    if(head!=NULL)
    {
        do
        {
            printf("%d%d\n",p->num,p->score);
            p=p->next;

        }while(p!=NULL);
    }
}
int main(int argc, char* argv[])
{
    struct student *head;
    head=create();
    print(head);
    return 0;
}
搜索更多相关主题的帖子: 输入 输出 链表 
2009-07-25 09:56
快速回复:使用链表该如何输入输出?
数据加载中...
 
   



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

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