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

[LeetCode] Factorial Trailing Zeroes

时间:2015-07-13 22:12:53      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:

Question:

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

1、题型分类:

2、思路:寻找n!后面的0的个数,即有多少个2*5,从而需要寻找里面总共有多少个2和多少个5,2肯定比5多,则只要找出5的个数即可。n/5是从n/5到n中5的倍数的个数

3、时间复杂度:

4、代码:

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

 

5、优化:

6、扩展:

[LeetCode] Factorial Trailing Zeroes

标签:

原文地址:http://www.cnblogs.com/maydow/p/4643838.html

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