题解 1749: 字符排序

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

筛选

字符排序 (C语言代码)

摘要:解题思路:稍微改一下冒泡排序,我觉得这道题出的不好,没把空格算进去注意事项:参考代码:#include<stdio.h>#include<string.h>void bubble_sort(char*……

字符排序 (C语言代码)

摘要:解题思路:注意事项:参考代码:正确的:#include<stdio.h>#include<string.h>#define N 21void pai(char s[]);int main(){    ……

1749: 字符排序

摘要:#include<bits/stdc++.h> using namespace std; int main(){     int n;     cin >> n;     getchar……

字符排序 (C语言代码)

摘要:解题思路:输入字符串,判断长度,在排序!注意事项:参考代码:#include<iostream>#include<string>using namespace std;const int N=1000……

C++字符排序(通过字符串输入)

摘要:解题思路:注意到题目中字符串长度比较小,通过选择冒泡等方法应该也能实现,但是本人很懒,因此还是用标准库中的sort函数实现。由于字符数组存储过于麻烦,因此选择通过string类型来读入,再逐个赋值,复……