wrdoct
wrdoct
全部文章
题解
复习(44)
面经(1)
归档
标签
去牛客网
登录
/
注册
wrdoct的博客
全部文章
/ 题解
(共88篇)
题解 | #合并表记录#
来自专栏
#include <iostream> #include <map> #include <vector> #include <algorithm> using namespace std; /*struct cmp{ bool operat...
C++
2022-04-30
0
328
题解 | #取近似值#
来自专栏
#include <iostream> using namespace std; int main() { double num; while(cin >> num) { cout << static_cast&...
C++
2022-04-30
0
251
题解 | #质数因子#
来自专栏
#include <iostream> #include <vector> using namespace std; int main(){ long num = 0; // cin >> num; vector<int> ...
C++
2022-04-30
0
312
题解 | #进制转换#
来自专栏
#include <unordered_map> #include <algorithm> #include <math.h> using namespace std; unordered_map<char, int> m = { {'0'...
C++
2022-04-29
0
411
题解 | #字符串分隔#
来自专栏
#include <iostream> #include <vector> #include <string> using namespace std; void process(vector<string>& res, string&am...
C++
2022-04-29
0
383
题解 | #明明的随机数#
来自专栏
#include <iostream> #include <queue> #include <stack> #include <vector> using namespace std; int main(){ int N = 0; ...
C++
2022-04-29
0
467
题解 | #计算某字符出现次数#
来自专栏
#include <bits/stdc++.h> using namespace std; int main(int argc, char* argv[]){ /*char inPut[1000]; cin.get(inPut, 1000); cin.igno...
C++
2022-03-10
0
305
题解 | #字符串最后一个单词的长度#
来自专栏
#include <bits/stdc++.h> using namespace std; int main(int argc, char* argv[]){ char inPut[5000]; cin.get(inPut, 5000); int strLen...
C++
2022-03-10
0
258
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页