码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode 172. Factorial Trailing Zeroes

时间:2018-05-01 01:06:08      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:actor   number   style   多少   特殊   ...   turn   span   情况   

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

 

思路:

阶乘末尾有多少零,取决于结果中有多少个10。而又多少个10又取决于结果中有多少个5(2的数量是远大于5的,因此数5的数量即可)。

数5的个数直接n/5即可,但是要注意25,125等特殊情况,需要将额外的5计算进来。这些情况计算n/5^2, n/5^3, ...

类似数学题做过一遍基本就会了。

 

class Solution {
public:
    int trailingZeroes(int n) {
        int count=0;
        while (n>0){
            count += n/5;
            n = n/5;
        }
        return count;
    }
};

 

LeetCode 172. Factorial Trailing Zeroes

标签:actor   number   style   多少   特殊   ...   turn   span   情况   

原文地址:https://www.cnblogs.com/hankunyan/p/8975396.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!