摘要: 1 #include 2 #define MaxSize 100 //串中最多字符个数 3 typedef struct 4 { 5 char data[MaxSize];//存放串字符 6 int length; //存放串的实际长度 7 }SqString;//顺序串类型 8 9 void Assign(SqString *s,char str[])//... 阅读全文
posted @ 2016-11-10 09:31 *小嘻嘻* 阅读(638) 评论(0) 推荐(0) 编辑