【練習】線性表的鏈式表示實現

類型定義 #include <string.h> #include <stdlib.h> #include <stdio.h> typedef struct { char key[15]; //關鍵字 char name[20]; int age; }DATA; //數據結點類型 typedef struct Node { DATA data; st
相關文章
相關標籤/搜索