include include include include using namespace std; class Solution {public: void replaceSpace(char str,int length) { string str1(str,length);//将c字符串赋值给字符串对象 for(int i=0;i<str1.size();i++) { if(str1[i]==' ') { str1.replace(i,1,"%20");//调用字符串类方法replace length=length+2; //统计c字符数组增加后的长度 } } str=(cha...