| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 450 人关注过本帖
标题:初学者,单链表的问题,求指导
只看楼主 加入收藏
cjyzwg
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2014-11-18
结帖率:100%
收藏
已结贴  问题点数:6 回复次数:2 
初学者,单链表的问题,求指导
#include<stdio.h>
#include<stdlib.h>
typedef struct Node
{
    int data;
    struct Node *next;
}len;
void creat()
{
    len *head,*p,*s;
    int i, number;
    if ((head = (len*)malloc(sizeof(len))) == NULL)
    {
        printf("error");
        exit(0);
    }

    printf("please input 5 numbers:");
    p = head;
    for (i = 0; i < 4; i++)
    {
        p = (len*)malloc(sizeof(len));
        s = (len*)malloc(sizeof(len));
        scanf_s("%d", &number);
        p->data = number;
        p = p->next;
        printf("The value is:%d",p->data);
    }
    s->next = NULL;
    }
void main()
{
    creat();
}
不知道错在哪里,谢谢
搜索更多相关主题的帖子: include numbers please 
2014-11-28 14:49
七夜之华
Rank: 3Rank: 3
来 自:China
等 级:论坛游侠
威 望:5
帖 子:82
专家分:103
注 册:2014-9-7
收藏
得分:5 
可以认真点就好了。。。。
#include<stdio.h>
#include<stdlib.h>
typedef struct Node
{
    int data;
    struct Node *next;
}len;
void creat()
{
    len *head,*p,*s;
    int i, number;
    if ((head = (len*)malloc(sizeof(len))) == NULL)
    {
        printf("error");
        exit(0);
    }

    printf("please input 5 numbers:");
    p = head;
    for (i = 0; i < 4; i++)
    {
        p = (len*)malloc(sizeof(len));
        s = (len*)malloc(sizeof(len));
        scanf("%d", &number);    /////////////////////////////scanf_s("%d", &number);
        p->data = number;
        p = p->next;
        printf("The value is:%d",p->data);
    }
    s->next = NULL;
    }
int main()   /////////////////////////////void main()
{
    creat();
}

#############################################
##########################################
因为不懂、才要学习、只有学习、才有进步。
2014-11-28 15:26
cjyzwg
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2014-11-18
收藏
得分:0 
回复 2 楼 七夜之华
你这个改的没用,我自己找到错误的原因了,谢谢了,而且那个scanf在vs2013版中确实得用scanf_s加边界用的,用scanf是会报错的
2014-12-04 10:12
快速回复:初学者,单链表的问题,求指导
数据加载中...
 
   



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

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