字符串内排序 vector 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ // 定义一个字符串变量,用于存储输入的一…… 题解列表 2024年12月09日 0 点赞 0 评论 40 浏览 评分:0.0
不要使用scanf函数,因为scanf不存储空格 摘要:这道题我最开始使用scanf输入,然后提交只能过50% ```c #include #include #include int cmp(const void *a,const void…… 题解列表 2024年08月01日 0 点赞 0 评论 210 浏览 评分:0.0
1742: 字符串内排序__题解(C++ 冒泡排序) 摘要:解题思路:用冒泡排序法进行排序注意事项:见代码参考代码:#include <bits/stdc++.h>using namespace std;int main(){ string s; …… 题解列表 2024年02月15日 0 点赞 0 评论 104 浏览 评分:9.9
C++代码实现 摘要:解题思路:sort排序,C++代码实现注意事项:参考代码:#include<iostream>#include<algorithm>#include<string>using namespace st…… 题解列表 2023年12月13日 0 点赞 0 评论 68 浏览 评分:0.0
C++ sort 字符串内排序 摘要:# C++ Sort ```c++ #include #include using namespace std; int main() { string s; whil…… 题解列表 2023年06月09日 0 点赞 0 评论 107 浏览 评分:9.9
字符串内排序 (选择排序) 摘要:解题思路:本题采用选择排序法。第一趟找出字符串中最小的字符,然后从该字符后重新找到最小字符。以此类推。注意事项:参考代码:char a[200];// int n; char t; while (ge…… 题解列表 2023年01月15日 0 点赞 0 评论 67 浏览 评分:0.0
1742: 字符串内排序C++题解 摘要:解题思路:无注意事项:无参考代码:#include<bits/stdc++.h>using namespace std; int main() { int i,j,a[10000]={}; str…… 题解列表 2022年07月28日 0 点赞 0 评论 252 浏览 评分:9.9
字符串内排序 (Java代码) 摘要:import java.util.Arrays; import java.util.Scanner; public class Main { public static void ma…… 题解列表 2022年06月12日 0 点赞 0 评论 125 浏览 评分:6.0
字符串内排序 题解(超简单) 摘要:解题思路:不就是个字符串中的字符排个序嘛!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int n;char a[1005];int m…… 题解列表 2022年05月08日 0 点赞 0 评论 156 浏览 评分:0.0
字符串内排序 摘要:while True: try: n=input() print("".join(sorted(n))) except: &nb 题解列表 2022年02月11日 0 点赞 0 评论 203 浏览 评分:9.9