双向链表 创建、删除、反转、插入
//struct #include <stdio.h> #include <stdlib.h> #include <string.h> /**********************双向链表************************************/ typedef struct Student_Double { char name[10]; int point; struct Student_Double *preStu; struct Student_Double *nextStu; } StudentDouble; //创建双向链表 StudentDouble *CreateDoubleLinkTable(void){ int i = 0; StudentDouble *head = NULL; head = (StudentDouble *)malloc(sizeof(StudentDouble)); head->name[0]='