whoway
whoway
全部文章
题解
01.笔试准备(4)
02.面试准备(1)
03.C++复习(5)
04.数据结构和算法(4)
05.随笔(2)
前端(1)
未归档(13)
读书笔记(5)
归档
标签
去牛客网
登录
/
注册
whoway的博客
人汲取知识的速度是超乎想象的
全部文章
/ 题解
(共4篇)
『质因数分解』题解 | #阶乘末尾0的数量#
01.超时解法 但是方法是对的 class Solution { public: /** * the number of 0 * @param n long长整型 the number * @return long长整型 */ long l...
数学
记忆
2021-08-09
0
567
精度设置
一、其他方式 牛顿迭代公式 梯度下降求立方根。 二、AC代码 #include<bits/stdc++.h> using namespace std; int main() { double n; while( ~scanf("%lf",&n) ) ...
数学
2021-03-18
1
536
最小公倍数模板
注意溢出 #include<bits/stdc++.h> using namespace std; int a,b; int gcd( int a, int b ) { if( a<b ) { swap(a,b); } if( 0...
数学
2021-03-18
0
434
最大公约数『模板』
来自专栏
辗转相除法『迭代写法』 #include<bits/stdc++.h> using namespace std; int n,m; int gcd(int a,int b) { if( a<b ) { swap( a,b ); } ...
数学
2021-03-15
0
644