摘要: 1 #include 2 #define maxsize 100 3 typedef struct{ 4 char ch[maxsize]; 5 int n; 6 }SeqString; 7 8 void Assign(SeqString &L,char ch1[]){ // 数组赋值给字符串 9 int i=0... 阅读全文
posted @ 2019-05-21 11:18 你若是天 阅读(166) 评论(0) 推荐(0) 编辑