码迷,mamicode.com
首页 > 其他好文 > 详细

【leetcode】替换空格

时间:2020-08-18 13:32:05      阅读:49      评论:0      收藏:0      [点我收藏+]

标签:space   scroll   index   pac   替换   none   ack   one   char   

char* replaceSpace(char* s){
    char str[10000] ={0};
    int index = 0;
    while(*s)
    {
        if (*s == 0x20)
        {
            str[index++] = 0x25;
            str[index++] = 0x32;
            str[index++] = 0x30;
            s++;
            continue;
        }
        str[index++] = *s;        
        s++;
    }
    s = str;
    return s;
}

 

【leetcode】替换空格

标签:space   scroll   index   pac   替换   none   ack   one   char   

原文地址:https://www.cnblogs.com/ganxiang/p/13511503.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!