双向链表-查找

#include<stdio.h> #include<stdlib.h> #include<string.h> #include<conio.h> #include<windows.h> #define N 10 #define Null 0 typedef struct node{ char name[20]; struct node *Previous,*Next; }stu
相关文章
相关标签/搜索