题解 1754: 字符串排序

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

筛选

字符串排序 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<algorithm> #include<string> using na……

字符串排序 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <strings.h>int main(){    int i,j,t=0,flag=0;    char a[10……
优质题解

Manchester- 字符串排序

摘要:解题思路:根据1724题,后缀子串排序①:定义一个二维字符数组②:输入字符串个数n③:输入字符串,当个数满或者输入"stop"时,结束输入④:调用sqrt排序函数,对字符数组按照长度进行排序⑤:排序完……