摘要: 字符串替换问题思路1:从前往后的思想替换为从后往前的思想。//把字符串中的每个空格替换成"%20"。#include "stdafx.h"#include using namespace std;#define length 100void ReplaceBlank(char string[]){ ... 阅读全文