首页 > 其他 > 详细

leetcode 1556

时间:2021-01-10 22:52:35      阅读:30      评论:0      收藏:0      [点我收藏+]

简介

简单题
思路:sprintf 将数字转为字符串,然后新建一个空的字符串然后将逆序统计是否可以被3整除添加0
感觉简单题做的也很慢

参考链接

https://github.com/haoel/leetcode
https://github.com/lishaohsuai/leetCode

code

        string thousandSeparator(int n) {
        char str[100];
        sprintf(str,"%d", n);
        char strCopy[100];
        int j = strlen(str);
        int k = 0;
        for(int i=0; str[i]!=‘\0‘;i++){
            if((j-i) % 3 == 0 && i!=0){
                strCopy[k] = ‘.‘;
                k++;
            }
            
            strCopy[k] = str[i];
            k++;
        }
        strCopy[k] = ‘\0‘;
        printf("oldString %s\n", str);
        string rlt(strCopy);
        return rlt;
    } 

leetcode 1556

原文:https://www.cnblogs.com/eat-too-much/p/14259670.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!