| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 290 人关注过本帖
标题:???????
只看楼主 加入收藏
wanyi8358
Rank: 1
来 自:南昌
等 级:新手上路
帖 子:1
专家分:0
注 册:2011-3-1
结帖率:0
收藏
已结贴  问题点数:20 回复次数:2 
???????
#define NULL 0
#define LEN sizeof(struct student)
#include <stdlib.h>
struct student
{long num;
float score;
struct student *next;
};
struct student *creat(int n)
{
    int i;
struct student *head=NULL,*p1,*p2;
head=p2=(struct student *)malloc(LEN);
scanf("%1d%f",&p2->num,&p2->score);
for(i=2;i<=n;i++)
{
p1=(struct student*)malloc(LEN);
scanf("%1d%f",&p1->num,&p1->score);
p2->next=p1;
p2=p1;
}
p2->next=NULL;
return(head);
}
帮忙看下啥问题?????????
搜索更多相关主题的帖子: return 
2011-04-06 18:03
laoyang103
Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19
来 自:内蒙古包头
等 级:贵宾
威 望:19
帖 子:3082
专家分:11056
注 册:2010-5-22
收藏
得分:10 
又是链表
链表类_C语言.rar (1.71 KB)

                                         
===========深入<----------------->浅出============
2011-04-06 19:06
qq1023569223
Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19
来 自:湖南科技大学
等 级:贵宾
威 望:26
帖 子:2753
专家分:13404
注 册:2010-12-22
收藏
得分:10 
// #define NULL 0  //指针可以等于0的吗?这句不要!
#define LEN sizeof(struct student)
#include <stdlib.h>
struct student
{
 long num;
 float score;
 struct student *next;
};
struct student *creat(int n)
{
int i;
struct student *head=NULL,*p1,*p2;
head=p2=(struct student *)malloc(LEN);
scanf("%ld%f",&p2->num,&p2->score);
for(i=2;i<=n;i++)
{
p1=(struct student*)malloc(LEN);
scanf("%ld%f",&p1->num,&p1->score);  //%ld不是%1d
p2->next=p1;
p2=p1;
}
p2->next=NULL;
return(head);
}

   唯实惟新 至诚致志
2011-04-06 19:33
快速回复:???????
数据加载中...
 
   



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

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