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
相关文章
相关标签/搜索