数据结构--C语言

线性表的操做 #include <stdio.h> #include <stdlib.h> #define LIST_INTSIZE 50 typedef char DataType; /*在此例中数据类型采用字符类型*/ typedef struct { DataType* elem; /*线性表的基地址*/
相关文章
相关标签/搜索