2.對鏈表的刪除操作

代碼部分: #include<stdio.h> #include<malloc.h> #define NULL 0 #define LEN sizeof(struct student) struct student *creat(void); struct student{ long num; float score; struct student *next; }; struct student
相關文章
相關標籤/搜索