求求offer的土拨鼠很无聊
求求offer的土拨鼠很无聊
全部文章
分类
归档
标签
去牛客网
登录
/
注册
求求offer的土拨鼠很无聊的博客
全部文章
(共88篇)
题解 | #a+b#
#include <iostream> using namespace std; const int maxn=1000; struct largeNum{ int digit[maxn]; int length; largeNum(){ leng...
2023-03-15
0
284
题解 | #递推数列#
#include <iostream> using namespace std; int main() { int a0,a1,p,q,k; while(cin>>a0>>a1>>p>>q>>k){ ...
2023-03-15
0
228
题解 | #矩阵幂#
#include <iostream> using namespace std; const int maxn=10; struct matrix{ int digit[maxn][maxn]; int col; int row; matrix(int a...
2023-03-15
0
277
题解 | #质因数的个数#
#include <cmath> #include <iostream> using namespace std; const int maxn=100001; bool j[maxn]; int zhifactor(int n){ int r=0; int ...
2023-03-15
0
243
题解 | #素数#
#include <iostream> using namespace std; const int maxn=10001; bool j[maxn]; int main() { for(int i=2;i<maxn;i++) j[i]=true; j[0]=fa...
2023-03-15
0
221
题解 | #最大公约数#
#include <iostream> using namespace std; int findmaxy(int a,int b){ if(a==0) return b; else if(b==0) return a; else if(a>b) retur...
2023-03-15
0
198
题解 | #进制转换#
#include <iostream> #include <string> #include <stack> using namespace std; string division(string x,int k){ int res=0; stri...
2023-03-15
0
247
题解 | #二进制数#
#include <iostream> #include <stack> using namespace std; stack<int> s; int main() { int x; while(cin>>x){ whi...
2023-03-15
0
214
题解 | #简单计算器#
#include <iostream> #include <stack> #include <iomanip> using namespace std; stack<char> opetor; stack<double> digit; bo...
2023-03-14
0
256
题解 | #后缀子串排序#
#include <iostream> #include <cstring> #include <vector> #include <algorithm> using namespace std; vector<string> store;...
2023-03-14
0
193
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页