leetcode剑指offer jz5 替换空格字符串

leetcode剑指offer jz5 替换空格字符串_第1张图片

由题意可知,简单的遍历字符串即可

#include
using namespace std;
class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param s string字符串 
     * @return string字符串
     */
    string replaceSpace(string s) {
        // write code here
        for(int i=0;i

你可能感兴趣的:(剑指offer,蓝桥杯,c++,职场和发展,算法)