C语言随笔小算法:创建双向链表

 C语言随笔小算法:创建双向链表   双向链表两个指针域!head定住,tail移动! 代码: #include "stdlib.h" #include "stdio.h" #include "malloc.h" // 创建双向链表 typedef struct STUDENT { int age; int score[3]; char *name; int
相关文章
相关标签/搜索