摘要: language: C address char* replaceSpace(char* s){ int num_space = 0; int getlen(char *st){ //由于还用于算 空格的数量,本函数只能被调用一次 int count = 0; while(st[count] != 阅读全文
posted @ 2021-01-26 01:22 RougeBW 阅读(25) 评论(0) 推荐(0) 编辑
摘要: language: C address char* reverseWords(char* s){ int i,p,j; // 先算长度 int getlen(char *st){ int count = 0; while(st[count] != '\0') count++; return coun 阅读全文
posted @ 2021-01-26 00:31 RougeBW 阅读(51) 评论(0) 推荐(0) 编辑