- 博客(1)
- 收藏
- 关注
原创 链表的操作小结
链表的操作小结#include <stdio.h>#include "malloc.h"typedef struct Node { int data; struct Node *pNext;}*PNODE,NODE;PNODE CreateList(){ PNODE pHead = NULL; PNODE pTail = NULL; PNODE pNew = NULL; int val, len; if (pHead ==
2021-04-21 22:24:45
79
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人