摘要: #include #define SIZE 100//最大字节 enum BOOL {ERROR,OK}; typedef struct { char data[SIZE]; int last; }sqlist; void initial(sqlist &); //初始化线性表 BOOL insert(sqlist &, int, char); //在线性表中插入元素 BO... 阅读全文
posted @ 2016-12-06 14:21 苏鑫2017的博客 阅读(135) 评论(0) 推荐(0) 编辑