小陆要懂云
小陆要懂云
全部文章
题解
归档
标签
去牛客网
登录
/
注册
小陆要懂云的博客
全部文章
/ 题解
(共19篇)
C++,无序关联容器unordered_multiset
#include <iostream> #include <string> #include<unordered_set> using namespace std; int main() { string s; getline(cin, s); ...
C++
STL
2021-08-14
8
789
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
C++,利用STL的反向迭代器和set
#include<bits/stdc++.h> using namespace std; int main(){ string str; cin>>str; unordered_set<char> set; for(auto ite...
C++
STL
2021-08-14
20
1953
C++,利用STL中的copy直接输出
#include<bits/stdc++.h> using namespace std; int main(){ string str; while(cin>>str){ int n; cin>>n; ...
C++
STL
2021-08-14
1
704
C++,利用STL中的bitset
利用sitseb对象的to_string()方法,将题目转化为求由‘0’、‘1’组成的字符串中,最长连续的‘1’的个数 #include<bitset> #include<iostream> using namespace std; int main(){ int n...
C++
STL
2021-08-14
5
606
C++,学习使用STL
看到二进制就要想到bitset #include<bitset> #include<iostream> using namespace std; int main(){ int n; while(cin>>n){ bitset<...
C++
STL
2021-08-14
17
819
C++,学习使用STL
看到二进制就要想到bitset #include<bitset> #include<iostream> using namespace std; int main(){ int n; cin>>n; bitset<32> b(n...
C++
STL
2021-08-14
96
2601
C++,学习使用STL,最短代码,而且很直观
#include <iostream> #include <string> #include <algorithm> using namespace std; int main(){ string str; getline(cin, str); ...
C++
STL
2021-08-14
12
1095
学习使用C++STL
auto result=equal_range(nums.begin(), nums.end(), target); if(result.first==result.second) return -1; else return result.first...
C++
STL
2021-08-04
4
595
首页
上一页
1
2
下一页
末页