[leetcode-172]Factorial Trailing Zeroes (c)

问题描述:
Given an integer n, return the number of trailing zeroes in n!.

Note: Your solution should be in logarithmic time complexity.

Credits:
Special thanks to @ts for adding this problem and creating all test cases.
分析:问题说的很清楚,就是n!后面有多少零。那我们知道能够产生0的只有5和2,而将式子作分解的话,很清楚的知道5的个数一定比2的个数少。所以问题的关键就变成了n!里面有多少个5,我们知道小于n的5的个数有n/5个,但是这还不够,因为比如25是包含着2个5的。所以问题就变成了5的倍数+25的倍数+125的倍数。那同理,就变成了n/5,n/5/5, n/5/5/5的个数之和。

代码如下:4ms

int trailingZeroes(int n) {
    int count = 0;

    while(n){
        n /=5;
        count+=n;
    }
    return count;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值