Write an algorithm which computes the number of trailing zeros in n factorial.
11! = 39916800, so the out should be 2
O(log N) time
s
[LintCode] Trailing Zeroes 末尾零的个数
原文:http://www.cnblogs.com/grandyang/p/6201067.html