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

牛牛的单向链表

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

全部评论

相关推荐

11-28 16:00
已编辑
武汉理工大学 Java
点赞 评论 收藏
分享
Java转测开第一人:这种就是饼 把应届当廉价劳动力用完然后丢掉
你觉得今年秋招难吗
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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