2019年5月14日

C:无空头链表

摘要: 1.链表的结构体以及全局变量声明 #include <stdio.h>#include <stdlib.h>// 创建Node结构体struct Node{ int a; struct Node * pNext;};//链表头尾指针struct Node* g_pHead = NULL; //刚开始 阅读全文

posted @ 2019-05-14 15:24 zhaoy_shine 阅读(290) 评论(0) 推荐(0) 编辑

导航