leetcode 172: Factorial Trailing Zeroes

问题描述:

Given an integer n, return the number of trailing zeroes in n!.

Note: Your solution should be in logarithmic time complexity.

思路:

问题要求 n! 的零尾个数,小数试验一下就知道,2的个数太多不用管,关键是求5和5的幂的个数。所以就求对于每一个k,n/(5^k),k属于{k|5^k<=n,k>0}

但是在用int来保存 5^k的值时,在极限情况下会出现超出int范围的值,所以应该用unsigned int 或是 long int。后来发现 unsigned int 还是很不安全,只是比 int 多一倍,但乘幂一下子就会是 5 倍,仍然会出现溢出。

代码:

class Solution {
public:
    int trailingZeroes(int n) {
        int amount = 0;
        long power_five = 1;    //if not unsigned, may be exceed the int 2147483647  
        while(1)
        {
            power_five *= 5;
            if(power_five > n) break;
            int addition = n / power_five;     //the number of "5's power" is the so important that it doesn't matter neglecting the 2.
            amount += addition;
        }

        return amount;
    }
};
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值