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.

 

cracking interview原题,2*5可以构成一个10,而5的个数少于2的个数,因此只需找出多少的5即可。

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

posted on 2015-04-13 08:24  shini  阅读(93)  评论(0编辑  收藏  举报

导航