摘要: 开源地址: "点击该链接" 题目描述 解题思路 示例代码 c++ class Solution { public: int trailingZeroes(int n) { int max_exp = log(n) / log(5); int res = 0; for (int i=0; i 阅读全文
posted @ 2019-10-25 19:40 机器感知 阅读(221) 评论(0) 推荐(0) 编辑