數據結構 創建結構體學生表 c語言

要求: 以單鏈表形式創建一個學生表或圖書表,並能實現相關的創建、銷燬、清空、查找、插入和刪除等算法。 需要定義學生表或圖書表的結構體 linklist.h代碼: typedef struct link_node//定義結構體,包含學生學號 語文 數學 英語成績 { int number,cgrade,mgrade,egrade; struct link_node *next; }node,*
相關文章
相關標籤/搜索