單鏈表的建立,查找,刪除,插入。

#include <stdio.h> #include <string.h> #include <stdlib.h> //定義學生的結構體 typedef struct stu { int id; char name[20]; struct stu * next; }stu; //該函數是建立學生信息 stu *Create_chain() {      stu* head = NULL; stu
相關文章
相關標籤/搜索