摘要: 将字符串中的空格都替换为 %20 ( 时间复杂度为O(N)的解法 ) void ReplaceBlankSpace(char* arr) { if (arr) { int count = 0; int lenth = strlen(arr); for (int i = 0; i < lenth;++ 阅读全文
posted @ 2016-07-05 20:13 _in_the_way 阅读(1349) 评论(0) 推荐(0) 编辑