双向链表的建立、增长和删除,销毁

双向链表的建立,增长,删除和查看 #include<stdio.h> #include<stdlib.h> typedef struct student{ int id; char name[20]; struct student*pre,*next; }Student; Student* Create();//建立双向循环链表 void Print1(Student*h)
相关文章
相关标签/搜索