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; while(cin >> n){ vector<pair<int, int>>...
C++
2022-07-01
0
300
题解 | #成绩排序#
#include <bits/stdc++.h> using namespace std; struct cmpJiangXu{ bool operator()(const pair<string, int>& a, const pair<string,...
C++
2022-06-29
0
335
题解 | #成绩排序#
来自专栏
#include <bits/stdc++.h> using namespace std; struct cmpJiangXu{ bool operator()(const pair<string, int>& a, const pair<string,...
C++
2022-06-29
0
359
题解 | #统计大写字母个数#
来自专栏
#include <bits/stdc++.h> using namespace std; int main(){ string str = ""; while(getline(cin, str)){ int res = 0; for(...
C++
2022-06-28
0
309
题解 | #矩阵乘法#
#include <bits/stdc++.h> using namespace std; int main(){ //输入 int firstRows = 0; int firstCols = 0; int secondRows = 0; i...
C++
2022-06-28
0
271
题解 | #矩阵乘法#
来自专栏
#include <bits/stdc++.h> using namespace std; int main(){ //输入 int firstRows = 0; int firstCols = 0; int secondRows = 0; i...
C++
2022-06-28
0
306
题解 | #配置文件恢复#
#include <bits/stdc++.h> using namespace std; vector<pair<string, string>> youXiaoCommand = { {"reset", ""}, {"reset", "bo...
C++
2022-06-28
0
256
题解 | #配置文件恢复#
来自专栏
#include <bits/stdc++.h> using namespace std; vector<pair<string, string>> youXiaoCommand = { {"reset", ""}, {"reset", "bo...
C++
2022-06-28
0
286
题解 | #尼科彻斯定理#
#include <bits/stdc++.h> using namespace std; //验证尼科彻斯定理,即:任何一个整数m的立方都可以写成m个连续奇数之和。 void process(int num){ int pow = num * num * num; ...
C++
2022-06-28
0
358
题解 | #尼科彻斯定理#
来自专栏
#include <bits/stdc++.h> using namespace std; //验证尼科彻斯定理,即:任何一个整数m的立方都可以写成m个连续奇数之和。 void process(int num){ int pow = num * num * num; ...
C++
2022-06-28
0
313
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页