leetcode——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.


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

你可能感兴趣的:(LeetCode,算法题)