求求offer的土拨鼠很无聊
求求offer的土拨鼠很无聊
全部文章
分类
归档
标签
去牛客网
登录
/
注册
求求offer的土拨鼠很无聊的博客
全部文章
(共88篇)
题解 | #八皇后#
#include <iostream> #include <cstring> #include <vector> #include <algorithm> using namespace std; vector<string> store;...
2023-03-05
0
247
题解 | #神奇的口袋#
#include <iostream> #include <stack> using namespace std; const int maxn=21; bool visit[maxn]; int times=0; void pocket(int vol,int num,in...
2023-03-05
0
236
题解 | #全排列#
#include <iostream> #include <vector> #include <cstring> using namespace std; vector<string> store; void wholesort(string pre,...
2023-03-04
0
277
题解 | #代理服务器#
#include <functional> #include <iostream> #include <cstring> #include <string> #include <vector> #include <algorithm&...
2023-03-04
0
285
题解 | #大整数的因子#
#include <iostream> #include <cstring> using namespace std; const int maxn=100; struct lnum{ int digit[maxn]; int length; lnum...
2023-03-04
0
273
题解 | #数字阶梯求和#
#include <cstring> #include <iostream> using namespace std; const int maxn=200; struct bigint{ int digit[maxn]; int length; bi...
2023-03-03
0
269
题解 | #A+B for Matrices#
#include <iostream> using namespace std; int main() { int m,n; while(cin>>m>>n && m!=0){ int a[m][n]; int b...
2023-03-03
2
282
题解 | #约数的个数#
#include <iostream> #include <vector> using namespace std; int yueshu(int x){ int cnt=0; int i=1; while(i*i<x){ if(x%i==0) cnt+=2; ...
2023-03-02
0
210
题解 | #最简真分数#
#include <iostream> #include <vector> using namespace std; int gys(int x, int y){ if(y==0) return x; else return gys(y,x%y); } int...
2023-03-02
0
242
题解 | #数制转换#
#include <iostream> #include <cstring> #include <vector> using namespace std; int char2int(char x){ if(x>='a'&&x<='f') ret...
2023-03-02
0
246
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页