linux gcc 7.3.0 實現 c單向鏈表

1、核心 #include <stdio.h> #include <stdlib.h> #include <malloc.h> #include <string.h> struct stu{ char name[20]; char num[20]; struct stu *next; }; struct stu *CreateList(){ struct stu *p,*next,*hea
相關文章
相關標籤/搜索