2019年5月16日

C:有空头链表

摘要: #include <stdio.h>#include <stdlib.h>//结点结构体struct Node{ int a; struct Node * pNext;};//链表头尾指针struct Node * g_pEnd = NULL;//这里的null没有意义,因为在主函数开始会直接给he 阅读全文

posted @ 2019-05-16 09:29 zhaoy_shine 阅读(522) 评论(0) 推荐(0) 编辑

导航