摘要: 串是由零个或多个字符组成的有限序列 定长结构体定义: typedef struct{ char str[maxSize+1]; int length; }Str; 变长结构体定义(需要使用malloc分配空间) typedef struct { char *ch; int length; }Str; 阅读全文