數據結構--C語言

線性表的操做 #include <stdio.h> #include <stdlib.h> #define LIST_INTSIZE 50 typedef char DataType; /*在此例中數據類型採用字符類型*/ typedef struct { DataType* elem; /*線性表的基地址*/
相關文章
相關標籤/搜索