摘要: #include#define MAX 100//定义顺序表的最大值//顺序表的定义typedef struct{ int l[MAX]; int size;//顺序表的长度}sequence_list;//函数功能:顺序表的初始化——置空表//函数参数:指向sequenc_list型变... 阅读全文
posted @ 2015-01-16 17:16 Thereisnospon 阅读(210) 评论(0) 推荐(0)