1 #include <stdio.h> 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[])//定义一个函数 10 { 11 int i=0; 12 while (str[i]!='