替换空格

请实现一个函数,将一个字符串中的空格替换成“%20”。例如,当字符串为We Are Happy.则经过替换之后的字符串为We%20Are%20Happy。

#include 

using namespace std;

class Solution {
public:
    void replaceSpace(char *str,int length) {
        int cnt=0;

        if(length==0){
            return;
        }
        for(int i=0;i=0){
            
            if(str[lo]==' '){
                //move hi ,after 02%,move lo;
                //otehrwise,when copy 02%,lo move,skip "are"
                str[hi--]='0';
            
                str[hi--]='2';
            
                str[hi--]='%';
                lo--;
                
                cnt--;
            } else{
                str[hi--]=str[lo--];
            }
        }

    }
};

int main(){

    char string[]={'W','e',' ','a','r','e',' ','h','a','p','p','y','.','\0'};
    int length=14;
    Solution().replaceSpace(string,length);
    for(int i=0;i<18;i++){
        cout<

你可能感兴趣的:(替换空格)