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

牛牛的单向链表

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

全部评论

相关推荐

争当牛马还争不上
码农索隆:1.把简历改哈 2.猛投,狠投 3.把基础打牢 这样你在有机会的时候,才能抓住
点赞 评论 收藏
分享
07-02 10:44
门头沟学院 C++
码农索隆:太实诚了,告诉hr,你能实习至少6个月
点赞 评论 收藏
分享
07-02 13:50
闽江学院 Java
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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