摘要:
串是由零个或多个字符组成的有限序列 定长结构体定义: typedef struct{ char str[maxSize+1]; int length; }Str; 变长结构体定义(需要使用malloc分配空间) typedef struct { char *ch; int length; }Str; 阅读全文
posted @ 2020-12-31 16:51
naturesx
阅读(74)
评论(0)
推荐(0)
浙公网安备 33010602011771号