题解 1742: 字符串内排序

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

字符串内排序 vector

摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){     // 定义一个字符串变量,用于存储输入的一……

C++代码实现

摘要:解题思路:sort排序,C++代码实现注意事项:参考代码:#include<iostream>#include<algorithm>#include<string>using namespace st……

字符串内排序 (选择排序)

摘要:解题思路:本题采用选择排序法。第一趟找出字符串中最小的字符,然后从该字符后重新找到最小字符。以此类推。注意事项:参考代码:char a[200];// int n; char t; while (ge……

1742: 字符串内排序C++题解

摘要:解题思路:无注意事项:无参考代码:#include<bits/stdc++.h>using namespace std; int main() {  int i,j,a[10000]={};  str……

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

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

字符串内排序

摘要:while True:     try:         n=input()         print("".join(sorted(n)))     except:     &nb