ypqhappy
ypqhappy
全部文章
题解
数据结构学习(17)
生活(2)
题目知识点(2)
归档
标签
去牛客网
登录
/
注册
ypqhappy的博客
就决定是你啦!
全部文章
/ 题解
(共2篇)
题解 | #提取不重复的整数#C++
用集合记录用取余开路用除等于循环 #include<iostream> #include<set> using namespace std; int main() { int n; cin >> n; set<int> set...
C++
哈希
研究生就业备战
2021-09-12
10
582
题解 | #合并表记录#C++
一个数组记录出现的键一个无序map记录键对应的值的累计 #include<iostream> #include<vector> #include<unordered_map> #include<algorithm> using namespace st...
C++
数组
哈希
2021-09-12
10
671