题解列表

筛选

最长字符(sf12k)

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s;&n……

map办法(sf12h)

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s; cin>>s; ……

全排列(sf12f)

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s1; ……

mp方法(sf12d)

摘要:解题思路:注意事项:容易超时参考代码:#include<bits/stdc++.h>using namespace std;int main(){ map<string,string……

set\vector\map综合应用(sf12c)

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int change(int x)//将x转化为字符型,对x的个位十位百……

set去重且排序(sf12b)

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ set<int>myset; //s……