c数据结构 -- 链表的理解

Posted cl94

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c数据结构 -- 链表的理解相关的知识,希望对你有一定的参考价值。

链表是结构体变量与结构体变量链接在一起,怎么链接在一起?通过指针

#include <stdio.h>
struct Node{
    int data;
    struct Node* next;
};
int main(void)
{
    struct Node node1 = {
        1,NULL
    };
    struct Node node2 = {
        3,NULL
    };
    struct Node node3 = {
        3,NULL
    };
       node1.next = &node2;
    node2.next = &node3;
    return 0;
}

 

以上是关于c数据结构 -- 链表的理解的主要内容,如果未能解决你的问题,请参考以下文章

C/C++数据结构:动图演示 单链表的结构介绍与实现

C/C++数据结构:动图演示 单链表的结构介绍与实现

C/C++数据结构:动图演示 单链表的结构介绍与实现

求C语言 数据结构中的链表创建,插入和删除代码

回顾链表

回顾链表