题解 | #数字序列中某一位的数字#(C++ 版本)

数字序列中某一位的数字

http://www.nowcoder.com/practice/29311ff7404d44e0b07077f4201418f5

class Solution { public:

int findNthDigit(int n) {
    int digCont = 1; //位数
    long long start = 1, count = 9;  // 0~9  10~99 100~999
    while(n > count) {
        n -= count;
        digCont += 1;
        start *= 10;
        count = start * digCont * 9;
    }
    int num = start + (n - 1) / digCont;
    string s = to_string(num);
    int result = s[(n - 1) % digCont] - '0';
    return result;
    
}

};

全部评论

相关推荐

神哥不得了:神哥来啦~1.建议不要包装,很容易问穿2.没日常也能找到暑期3.简历模板换一下,字体和版式看着好难受,而且最好压缩到一页,技术的倒数第2和3重复啦,项目建议换两个高质量的上去,如果时间够的话,八股就把高频top50的题目多巩固几遍,吃透,注意不要找假高频,这样绝对能找到暑期
点赞 评论 收藏
分享
评论
2
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务