关于链表创建的一个疑问

发布于 2022-09-03 07:52:30 字数 1128 浏览 23 评论 0

如下代码,我的思路是init函数创建一个节点和一个指向节点的指针(堆上分配),然后返回这个指针作为头指针,add2tail就是向链表的尾部添加一个节点,但是为什么没有正确运行

#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>

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


struct node *  init(int data){
    struct node * head = (struct node *)malloc(sizeof(struct node *));
    struct node *  n = (struct node * )malloc(sizeof(struct node));
    n->data = data;
    n->next = NULL;
    head = n;
    return head;
}

void add2tail(struct node *  list, int data){
    struct node *  n = list;
    while (n != NULL){
        n = n->next;
    }
    struct node *  newnode = (struct node * )malloc(sizeof(struct node));
    n = newnode;
    newnode->data = data;
    newnode->next = NULL;
    return;
}

void print(struct node *  list){
    struct node *  n = list;
    while (n != NULL){
        printf("%d ", n->data);
        n = n->next;
    }
    printf("\n");
    return;
}

int main(void){
    struct node *  head = init(123);
    print(head);
    add2tail(head, 7);
    print(head);
    system("pause");
    return 0;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏夜暖风 2022-09-10 07:52:30
修改两处

while(  n->next  !=  null  )

n->next  =  newnode;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文