C语言训练-排序问题<2> 摘要:x=list(map(int,input().split())) x.sort(reverse=True) for i in x: print(i,end=' ')解题思…… 题解列表 2022年02月08日 0 点赞 0 评论 149 浏览 评分:6.0
Hifipsysta-1129题-C语言训练-排序问题<2>(C++代码)向量容器+排序STL 摘要:```cpp #include #include #include using namespace std; bool range_mode(int a, int b){ re…… 题解列表 2022年01月31日 0 点赞 0 评论 155 浏览 评分:0.0
1129: C语言训练-排序问题<2> 摘要:解题思路:冒泡排序,大的移到前面,小的移到后面;注意事项:循环获取输入值,存入a[10]参考代码:#include<stdio.h>#include<string.h>int a[10],i,j,m;…… 题解列表 2022年01月21日 0 点赞 0 评论 88 浏览 评分:0.0
1129: C语言训练-排序问题<2> 快速排序法 摘要:解题思路:采用快速排序法,采用最左边的数为基准数,将小于等于基准点的数全部放到基准点右边,将大于等于基准点的数全部放到基准点左边,实现从大到小的排序注意事项:相比冒泡排序,每次交换是跳跃式的,最差情况…… 题解列表 2021年12月24日 0 点赞 0 评论 170 浏览 评分:0.0
1129: C语言训练-排序问题<2> 摘要:降序排序,只需要给 sort 函数加第三个参数。#include<bits/stdc++.h> using namespace std; bool cmp(int a,int b){ …… 题解列表 2021年12月17日 0 点赞 0 评论 179 浏览 评分:0.0
1129: C语言训练-排序问题<2>-题解(python) 摘要:解题思路:注意事项:参考代码:l = list(map(int,input().split()))l.sort()for i in l[::-1]: print(i,end=' '…… 题解列表 2021年10月22日 0 点赞 0 评论 152 浏览 评分:0.0
c++ 快速排序练习一下 摘要:解题思路:使用快速排序完成数组的排序,虽然比较复杂一点,而且对于这个有顺序的序列显然效果是最不好的,只是练习一下。注意事项:参考代码:#include<iostream>using namespace…… 题解列表 2021年09月07日 0 点赞 0 评论 141 浏览 评分:0.0
C语言排序问题 摘要:解题思路:xxxxxxx注意事项:xxxxxxxxx参考代码:#include<stdio.h>void main(){ int a[10],i,j,temp; for(i=0;i<10;i++) {…… 题解列表 2021年08月07日 0 点赞 0 评论 196 浏览 评分:0.0
排序问题-插入排序 摘要:解题思路:插入排序的核心思路是拿出一个数,依次和前面的数做比较 第一轮:i=1,j=i-1=0;1 1 3 4 5 6 7 8 9 10->2 1 3 4 5 6 7 8 9…… 题解列表 2021年04月07日 0 点赞 0 评论 309 浏览 评分:9.9
排序问题<2> 极简 摘要: import java.util.Arrays; import java.util.Scanner; public class Main { pub…… 题解列表 2021年04月01日 0 点赞 0 评论 114 浏览 评分:0.0