小陆要懂云
小陆要懂云
全部文章
分类
题解(37)
归档
标签
去牛客网
登录
/
注册
小陆要懂云的博客
全部文章
(共19篇)
C++,利用STL的priority_queue
优先队列出队的是当前优先级最高的元素,我们要做的是把出现次数多的留下,所以比较器要以次数少为优先级高,其逻辑与默认的less行为相反 vector<vector<string> > topKstrings(vector<string>& strin...
C++
STL
优先队列
2021-08-24
2
878
C++,用好STL
#include <map> #include <iostream> #include <string> #include <vector> #include <algorithm> #include <iterator> us...
C++
STL
Lambda
2021-08-20
43
2031
C++,最短代码,进来学知识
#include <iostream> #include <algorithm> #include <vector> #include <iterator> using namespace std; int main(){ int n,k; ...
C++
STL
2021-08-19
15
1063
C++,无序集合unordered_set
#include <iostream> #include <string> #include <unordered_set> using namespace std; int main(){ string shortS,longS; bool re...
C++
哈希表
STL
2021-08-19
22
1235
C++,三行就能解决
使用STL和Lambda vector<int> reOrderArray(vector<int>& array) { // write code here stable_partition(array.begin(), arr...
C++
STL
Lambda
2021-08-17
6
580
C++,先调用STL算法sort,然后计算最长连续
int MLS(vector<int>& arr) { // write code here if(arr.empty()) return 0; int longest=1; int coun...
C++
STL
2021-08-15
3
535
C++,代码美观,STL的稳定排序和用Lambda写小函数
#include <iostream> #include <string> #include <vector> #include <algorithm> using namespace std; int main() { int n,flag;...
C++
STL
Lambda
2021-08-15
37
2432
C++,STL的正确使用方法
#include<bits/stdc++.h> using namespace std; int main(){ int n; while(cin >> n){ vector<int> v; int m; ...
C++
STL
2021-08-15
22
1022
C++,最短代码,字符串自带与数值的转换函数
#include<iostream> #include<string> using namespace std; int main(){ string str; while(cin>>str){ cout << st...
C++
STL
2021-08-15
128
8453
C++,利用反向迭代器,代码简洁
#include<bits/stdc++.h> using namespace std; int main(){ vector<string> vs; string tmp; while(cin>>tmp) vs.empla...
C++
STL
2021-08-15
25
1638
首页
上一页
1
2
下一页
末页