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

172. Factorial Trailing Zeroes

时间:2016-05-23 22:46:07      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

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

Note: Your solution should be in logarithmic time complexity.

 

 1 int trailingZeroes(int n) {
 2     if(n < 5)
 3         return 0;
 4     int k = 0;
 5     while(n)
 6     {
 7         n = n / 5;
 8         k += n;
 9     }
10     return k;
11 }

转:http://www.jianshu.com/p/211618afc695

172. Factorial Trailing Zeroes

标签:

原文地址:http://www.cnblogs.com/boluo007/p/5521642.html

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