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

牛牛的单向链表

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;
}

全部评论

相关推荐

2025-12-18 11:59
广州南方学院 C++
牛客78682892...:直接点还好,总比要了简历也不回的强
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务