数据结构线性表的代码
#include<stdio.h> #define maximum 20 #define TRUE 1 #define FALSE 0 typedef int Datatype; struct Lis
数据结构线性表的代码