- 博客(1)
- 收藏
- 关注
原创 链表创建,头插法,尾插法。
#include <stdio.h> #include<stdlib.h> #include<string.h> typedef int ElemType; struct node { ElemType data; //数据成员data类型为ElemType类型 struct node * next; } ; typedef struct node LNode; typedef struct node * LinkList; vo...
2022-04-10 16:05:39
1393
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人