• 剑指Offer 整数中1出现的次数(从1到n整数中1出现的次数)


    题目描述

    求出1~13的整数中1出现的次数,并算出100~1300的整数中1出现的次数?为此他特别数了一下1~13中包含1的数字有1、10、11、12、13因此共出现6次,但是对于后面问题他就没辙了。ACMer希望你们帮帮他,并把问题更加普遍化,可以很快的求出任意非负整数区间中1出现的次数。
     
     
    思路:
    1.暴力。
    2.通过当前位的数值,计算当前位为1的的数有多少个,然后相加。
     
    代码:
    1.
     1 class Solution {
     2 public:
     3     int NumberOf1Between1AndN_Solution(int n)
     4     {
     5         int iCount=0;
     6         for(int i=1;i<=n;i++)
     7         {
     8             iCount+=count1(i);
     9         }
    10         return iCount;
    11 
    12     
    13     }
    14     
    15     int count1(int n)
    16         {
    17         
    18         int iNum=0;
    19         while(n!=0)
    20             {
    21             iNum+=(n%10==1)?1:0;
    22             n/=10;
    23         }
    24        
    25         return iNum;
    26     }
    27 };

    2:

     1 class Solution {
     2 public:
     3     int NumberOf1Between1AndN_Solution(int n)
     4     {
     5         int cout=0;
     6         int factor=1;
     7         int nownum=0;
     8         int highnum=0;
     9         int lownum=0;
    10         
    11         while(n/factor)
    12         {
    13             lownum=n-(n/factor)*factor;
    14             nownum=(n/factor)%10;
    15             highnum=n/(factor*10);
    16             
    17             switch(nownum)
    18             {
    19                 case 0:
    20                     cout+=highnum*factor;break;
    21                 case 1:
    22                     cout+=highnum*factor+lownum+1;break;
    23                 default:
    24                     cout+=(highnum+1)*factor;
    25                     break;                
    26             }
    27             factor*=10;            
    28         }
    29         return cout;
    30     }
    31 };
  • 相关阅读:
    手动安装mysql
    spring boot 配置注入
    IOS-电话拦截
    重新入坑-IntelliJ Maven
    git使用问题
    Intelij U
    iTunes空间不足无法备份iphone的问题
    Centos7最小化安装
    实操笔记
    centos7中端口及服务对应情况(笔记)
  • 原文地址:https://www.cnblogs.com/SeekHit/p/5788104.html
Copyright © 2020-2023  润新知