题解 | #牛牛的单向链表#

牛牛的单向链表

https://www.nowcoder.com/practice/95559da7e19c4241b6fa52d997a008c4

#include <stdio.h>
#include <stdlib.h>
struct List {
    int data;
    struct List* node;
};
int main() {
    int a, n;
    scanf("%d", &n);
    int arr[n];
    for (a = 0; a < n; a++) {
        scanf("%d", &arr[a]);
    }
    struct List* p = NULL;
    struct List* head = NULL;
    head = malloc(sizeof(struct List));
    struct List* end = head;
    for (a= 0; a < n; a++) {
        p = malloc(sizeof(struct List));
        p->data = arr[a];
        end->node = p;
        end = p;
    }
    end->node = NULL;

    struct List* x = head->node;
    for (a = 0; a < n; a++) {
        printf("%d ", x->data);
        x = x->node;
    }

    return 0;
}

全部评论

相关推荐

头像
昨天 16:23
中南大学 Java
野猪不是猪🐗:签了美团真是不一样! 亲戚们都知道我签了美团,过年都围着我问送一单多少钱,还让弟弟妹妹们引以为戒,笑我爸我妈养了个🐢孩子,说从小就知道我这个人以后肯定没出息,我被骂的都快上天了
点赞 评论 收藏
分享
2024-12-23 10:55
已编辑
大连理工大学 Java
牛客930504082号:华子综测不好好填会挂的,而且填的时候要偏向牛马选项
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务