小陆要懂云
小陆要懂云
全部文章
题解
归档
标签
去牛客网
登录
/
注册
小陆要懂云的博客
全部文章
/ 题解
(共4篇)
C++,用好STL
#include <map> #include <iostream> #include <string> #include <vector> #include <algorithm> #include <iterator> us...
C++
STL
Lambda
2021-08-20
43
2031
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的稳定排序和用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++,学习用Lambda包装isupper库函数来使用STL算法
#include<bits/stdc++.h> using namespace std; int main(){ string str; while(getline(cin,str)){ cout<<count_if(str.begin(), ...
C++
STL
Lambda
2021-08-14
10
791