橙子爱吃桃子
橙子爱吃桃子
全部文章
题解
C++字符串笔记(1)
归档
标签
去牛客网
登录
/
注册
橙子爱吃桃子的博客
全部文章
/ 题解
(共70篇)
C++简洁代码:
C++简洁代码: class Solution { public: void FindNumsAppearOnce(vector<int> data,int* num1,int *num2) { unordered_map<int,int> map; ...
2020-09-05
1
725
C++简洁代码:
C++简洁代码: #include<bits/stdc++.h> using namespace std; int main() { int n; cin >> n; vector<string> res(n); for(int i = ...
2020-09-03
25
1705
C++简洁代码:
C++简洁代码: #include<bits/stdc++.h> using namespace std; int main() { string str, res; while(cin >> str) { str += " " +res;...
2020-09-03
105
4727
C++简洁代码:
C++简洁代码: #include<bits/stdc++.h> using namespace std; int main() { string str; cin >> str; unordered_set<char> set; for...
2020-09-03
36
1573
C++简洁代码:
C++简洁代码: #include<bits/stdc++.h> using namespace std; int main() { int nums; cin >> nums; string str = to_string(nums); unord...
2020-09-03
41
4369
C++简洁代码:
C++简洁代码: #include<bits/stdc++.h> using namespace std; int main() { int n; while(cin >> n) { map<int, int> map; ...
2020-09-03
11
1283
C++简洁代码:
C++简洁代码: #include<bits/stdc++.h> using namespace std; int main() { long n; cin >> n; for(int i = 2; i < n; i ++) whil...
2020-09-03
7
2600
C++简洁代码:
C++简洁代码: #include<bits/stdc++.h> using namespace std; int main() { string str; while(cin >> str) { int res = 0; f...
2020-09-03
5
937
C++简洁代码:
C++简洁代码: #include<bits/stdc++.h> using namespace std; int main() { string str; while(cin >> str) { while(str.size() > ...
2020-09-03
44
2450
C++简洁代码:
C++简洁代码: #include<bits/stdc++.h> using namespace std; int main() { int n; while(cin >> n) { set<int> set; ...
2020-09-03
6
890
首页
上一页
1
2
3
4
5
6
7
下一页
末页