| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 323 人关注过本帖
标题:一个简短的链表创建程序
只看楼主 加入收藏
somuchbetter
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2013-6-19
结帖率:0
收藏
已结贴  问题点数:20 回复次数:2 
一个简短的链表创建程序
#include <stdio.h>
#include <stdlib.h>
#define LEN sizeof(struct p)
struct p
{
    int p1;
    struct p *next;  
 
};

void main()
{
    printf{"请输入 ,0为结束标记/n"};return;这里的return是我判断错误环节加入的
    struct p *head ,*tail ,*temp;
    head=(struct p*)malloc(LEN);/*链表头部不做存储只是方便进入循环*/
    tail=head;  
    int r;          /*接受输入*/
    scanf{"%d",&r};
    for(;r!=0;)
    {
        temp=tail;
        tail=malloc(LEN);
        tail->p1=r;
        temp->next=tail;        
        scanf{"%d",&r};
    };


}
为了找出错误链表被我极度简化,在图示中加return仍然有错,说明错误在前面就有晕了,求大神求赐教
搜索更多相关主题的帖子: include return 
2013-06-19 18:12
embed_xuel
Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19
等 级:贵宾
威 望:58
帖 子:3845
专家分:11385
注 册:2011-9-13
收藏
得分:10 
printf{"请输入 ,0为结束标记/n"}  
printf("请输入 ,0为结束标记/n");

总有那身价贱的人给作业贴回复完整的代码
2013-06-19 18:33
韶志
Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19
来 自:斗气大陆
等 级:贵宾
威 望:44
帖 子:2223
专家分:13592
注 册:2013-3-22
收藏
得分:10 
#include <stdio.h>
#include <stdlib.h>
#define LEN sizeof(struct p)
struct p
{
    int p1;
    struct p *next;  

};

void main()
{
    struct p *head ,*tail ,*temp;
    int r;                                     //定义变量应该是在main()函数最前面   否则会出现“... undeclared identifier”
    printf("请输入 ,0为结束标记\n");return;    //printf后面是括号,不是花括号,还有  return后面的;应该是英文格式
    head=(struct p*)malloc(LEN);/*链表头部不做存储只是方便进入循环*/
    tail=head;  
            /*接受输入*/
    scanf("%d",&r);                     //请细心
    for(;r!=0;)
    {
        temp=tail;
        tail=malloc(LEN);
        tail->p1=r;
        temp->next=tail;        
        scanf("%d",&r);               //还是括号问题
    }
}

三十年河东,三十年河西,莫欺少年穷!
2013-06-19 19:18
快速回复:一个简短的链表创建程序
数据加载中...
 
   



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

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