题解列表

筛选

字符串内排序 题解(超简单)

摘要:解题思路:不就是个字符串中的字符排个序嘛!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int n;char a[1005];int m……

整数奇偶排序 题解(c++简单)

摘要:解题思路:这题错了那么多次,我无语了。直接上菜。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a,x[1005],y[1005]……