// 时间复杂度:O(N) int trailingZeroes(int n){ int x, res = 0; for(int i=1;i<=n;i++){ x = i; while(x>0) if(x%5==0){ x/=5; res++; } else break; } return res; }
每日LeetCode - 172. 阶乘后的零(C语言)
原文:https://www.cnblogs.com/vicky2021/p/14924323.html