wrdoct
wrdoct
全部文章
分类
复习(44)
面经(1)
题解(88)
归档
标签
去牛客网
登录
/
注册
wrdoct的博客
TA的专栏
127篇文章
14人订阅
华为题库题解
103篇文章
467人学习
互联网学习
24篇文章
9430人学习
全部文章
(共151篇)
题解 | #走方格的方案数#
来自专栏
#include <bits/stdc++.h> using namespace std; int main(){ int n = 0, m =&...
C++
2022-07-07
0
255
题解 | #密码强度等级#
来自专栏
#include <bits/stdc++.h> using namespace std; vector<pair<int, string>> m = {  ...
C++
2022-07-06
0
402
题解 | #将真分数分解为埃及分数#
来自专栏
#include <bits/stdc++.h> using namespace std; int main(){ string s = ""; &nbs...
C++
2022-07-06
0
325
题解 | #求最大连续bit数#
来自专栏
#include <bits/stdc++.h> using namespace std; //求1的个数 int oneNum(int num){ int res ...
C++
2022-07-05
0
334
题解 | #火车进站#
来自专栏
#include <bits/stdc++.h> //火车站只有一个方向进出 ---- 栈 using namespace std; vector<vector<int>> res; vector<...
C++
2022-07-05
0
322
题解 | #整型数组合并#
来自专栏
#include <bits/stdc++.h> using namespace std; void process(vector<int> nums1, vector<int> nums2...
C++
2022-07-04
0
358
题解 | #公共子串计算#
来自专栏
#include <bits/stdc++.h> using namespace std; void process(string s1, string s2, int& res){ &...
C++
2022-07-03
0
269
题解 | #二维数组操作#
来自专栏
#include <bits/stdc++.h> using namespace std; bool initExcel(int m, int n){ return&...
C++
2022-07-03
0
303
题解 | #参数解析#
来自专栏
#include <bits/stdc++.h> using namespace std; int main(){ string str = ""; &n...
C++
2022-07-02
0
270
题解 | #矩阵乘法计算量估算#
#include <bits/stdc++.h> using namespace std; int main(){ int n = 0; while(cin >> n){ vector<pair<int, int>>...
C++
2022-07-01
0
280
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页