- 博客(1)
- 收藏
- 关注
原创 有空头单向链表
#include<stdio.h>#include<stdlib.h>struct Node{ int Data; struct Node *pNext;};//增:尾添加void AddToEnd(struct Node *pHead, int *pNode_Count, int Data);//删:释放void Free(struct Node *pHead, int *pNode_Count);//查:遍历(查看整个链表的数据)void
2021-04-24 11:37:00
106
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人