jsk数据结构-链表

一般链表只有一个表头
元素不能随机访问
元素相互依赖,串联而成

在这里插入图片描述
在这里插入图片描述

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

typedef struct Node{
    int data;
    struct Node *

猜你喜欢

转载自blog.csdn.net/weixin_43870649/article/details/103378973