c語言:單鏈表的實現(一) 建立,插入,刪除,查找

#include<iostream> #include<stdio.h> #include<math.h> #define NULL 0 #define LEN sizeof(struct Student) using namespace std; typedef struct Student { int length; int num; struct Student *next; }Stu
相關文章
相關標籤/搜索