| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 290 人关注过本帖
标题:新手求问!关于链表的!
只看楼主 加入收藏
just_wyy
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2015-5-9
收藏
 问题点数:0 回复次数:1 
新手求问!关于链表的!
#include <stdio.h>
#include <stdlib.h>

typedef struct node
{
    char *name;
    int first_class;
    int second_class;
    int third_class;
    int fourth_class;
    struct node *next;
}Node, *Linklist;

void creatlist(Linklist head, int n);
void printlist(Linklist head);

Linklist head = NULL;

int main()
{
    int n;
    Node *head;
    head = NULL;
    creatlist(head, n);
    printlist(head);
    return 0;
}

void creatlist(Linklist head, int n)        //创建成绩列表
{
    int i;

    Linklist p;
    head = (Linklist)malloc(sizeof(Node));
    head->next = NULL;
    printf("请输入学生人数:");
    scanf("%d", &n);
    for (i = n; i > 0; --i) {
        p = (Linklist)malloc(sizeof(Node));
        printf("请输入姓名:");
        scanf("%s", p->name);
        printf("p->name=%s\n", p->name);            //-------此处出错--------------------
        
        printf("请输入四门分数:\n");
        printf("第一:");
        scanf("%d", &p->first_class);
        //printf("p->first_class=%d\n", p->first_class);
        printf("第二:");
        scanf("%d", &p->second_class);
        printf("第三:");
        scanf("%d", &p->third_class);
        printf("第四:");
        scanf("%d", &p->fourth_class);
        p->next = head->next;
        head->next = p;
    }
   
}

void printlist(Linklist head)        //打印成绩列表
{
    Linklist p = head;
    p = (struct node *)malloc(sizeof(struct node));
    if (p != NULL) {
        printf("ok\n");
    }else {
        printf("fail\n");
    }
    printf("显示所有的元素:");
    while (p) {
        printf("%s, %d, %d, %d, %d", p->name, p->first_class, p->second_class, p->third_class, p->fourth_class);
        p = p->next;
    }
    printf("\n");

}
搜索更多相关主题的帖子: include return 
2015-05-10 19:41
just_wyy
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2015-5-9
收藏
得分:0 
木有前辈提示么。。
2015-05-10 19:45
快速回复:新手求问!关于链表的!
数据加载中...
 
   



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

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