【PTA】逆序数据建立链表-关于循环创建链表的地址问题

写这道题是为了记录一下申请结构体是指针地址的问题;

题目链接
本题要求实现一个函数,按输入数据的逆序建立一个链表。
函数接口定义:

struct ListNode *createlist();

函数createlist利用scanf从输入中获取一系列正整数,当读到−1时表示输入结束。按输入数据的逆序建立一个链表,并返回链表头指针。链表节点结构定义如下:

struct ListNode {
    int data;
    struct ListNode *next;
};
#include <stdio.h>
#include <stdlib.h>

struct ListNode {
    int data;
    struct ListNode *next;
};

struct ListNode *createlist();

int main()
{
    struct ListNode *p, *head = NULL;

    head = createlist();
    for ( p = head; p != NULL; p = p->next )
        printf("%d ", p->data);
    printf("\n");

    return 0;
}

/* 你的代码将被嵌在这里 */

地址奇怪的输出 本片博客的记录对象

    for (int i = 0; i < 5; i++) {
        ListNode cur;
        printf("%d\n", &cur);
    }
    /* 输出地址相同
        605746920
        605746920
        605746920
        605746920
        605746920
*/
    for (int i = 0; i < 5; i++) {
        //struct ListNode* cur = (struct ListNode*)malloc(1 * sizeof(struct ListNode));
        ListNode *cur = (ListNode*) malloc (sizeof(ListNode));
        printf("%d\n", cur);
    }
    /*
    * 输出地址不同
        1050487984
        1050486304
        1050486784
        1050487504
        1050486464
    */
    对于这个输出感到很奇怪

解题代码

struct ListNode* createlist() {
    struct ListNode* p = NULL;
    int data;
    while (scanf("%d", &data) && data != -1) {
        struct ListNode* cur = (struct ListNode*)malloc(1 * sizeof(struct ListNode));
        cur->data = data;
        cur->next = p;
        p = cur;
    }
    return p;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值