我只想要一个offer罢了
我只想要一个offer罢了
全部文章
分类
归档
标签
去牛客网
登录
/
注册
我只想要一个offer罢了的博客
全部文章
(共14篇)
题解 | #字符个数统计#
#include <bits/stdc++.h> using namespace std; unordered_set<char> s;//无序且无重复 char c; int main(){ while (cin>>c) { if(s.f...
2023-03-31
0
220
题解 | #提取不重复的整数#
#include <bits/stdc++.h> using namespace std; int main(){ unordered_set<char> u;//无序且无重复 string s; getline(cin, s); for(a...
2023-03-31
0
215
题解 | #合并表记录#
#include <bits/stdc++.h> using namespace std; int main() { int tmp=0, tmp1=0; map<int, int> map;//key有序且不可重复 cin>>tmp; ...
2023-03-31
0
226
题解 | #明明的随机数#
#include <bits/stdc++.h> #include <iostream> using namespace std; set<int> a;//有序,不可重复 int main() { int c;int flag=0; while(...
2023-03-30
0
270
首页
上一页
1
2
下一页
末页