p74 阶乘末尾0的个数(leetcode 172)
Posted repinkply
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了p74 阶乘末尾0的个数(leetcode 172)相关的知识,希望对你有一定的参考价值。
一:解题思路
Time:O(log_5(n)),Space:O(1)
二:完整代码示例 (C++版和Java版)
C++:
class Solution { public: int trailingZeroes(int n) { int count = 0; while (n > 0) { n /= 5; count += n; } return count; } };
Java:
class Solution { public int trailingZeroes(int n) { int count=0; while(n>0) { n/=5; count+=n; } return count; } }
以上是关于p74 阶乘末尾0的个数(leetcode 172)的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 172. Factorial Trailing Zeroes
[LeetCode]172. Factorial Trailing Zeroes阶乘尾随0的个数