- 博客(1)
- 收藏
- 关注
原创 单链表的创建
单链表的创建 单链表的创建一般用到结构体 struct node { int data; node* next; } node* create() { int i=0; //链表节点计数器 node* head,* p,*q;//head头节点,p为循环中的临时节点,q末节点 int x=0; head=(node*) malloc(sizeof(n...
2020-03-30 12:13:27
156
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人