C语言训练-排序问题<2>(水题) 摘要:```c #include #include int cmp(const void* a,const void* b){ return *(int *)b-*(int *)a; } …… 题解列表 2023年01月19日 0 点赞 0 评论 88 浏览 评分:0.0
LikeWater - 1129: C语言训练-排序问题<2> 摘要:####这是冒泡排序,对于小数量的序列十分好用,简单快捷,使用方便,还有直接插入排序,简单选择排序,快速排序我在其他题目中给大家附上! ```cpp #include #include u…… 题解列表 2023年02月28日 0 点赞 1 评论 118 浏览 评分:9.9
编写题解 1129: C语言训练-排序问题 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int px(int num[],int len); int main() { int s[10]; …… 题解列表 2023年03月08日 0 点赞 0 评论 217 浏览 评分:9.9
sort大法////// 摘要:解题思路:会sort排序就行通过定义cmp函数注意事项:数据长度可以用strlen()读取替换10,这里图方便参考代码:#include<iostream> #include<algorithm> …… 题解列表 2023年04月03日 0 点赞 0 评论 46 浏览 评分:0.0
---冒泡排序--- 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() {int a[10],i,j,temp; for(i=0; i<10; i++){ scanf…… 题解列表 2023年04月22日 0 点赞 0 评论 61 浏览 评分:0.0
题解 1129: C语言训练-排序问题 摘要:直接上代码!!!!!!!!!!!!!!!!!!!!!! ```cpp #include //万能头 using namespace std; bool cmp(int a,int b) { …… 题解列表 2023年05月06日 0 点赞 0 评论 173 浏览 评分:9.9
1129:两行代码 摘要:解题思路:注意事项:参考代码:for x in sorted(map(int, input().split()), reverse=True): print(x, end=' …… 题解列表 2023年05月24日 0 点赞 0 评论 124 浏览 评分:0.0
C语言训练-排序问题<2> 摘要:**思路:** 冒泡法 **代码:** ```c #include int main() { int a[10],i,j,t; for(i=0;i…… 题解列表 2023年10月15日 0 点赞 0 评论 65 浏览 评分:0.0
使用冒泡排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void f(int a[], int s) { int i, j, t; for (i = 0; i …… 题解列表 2023年11月08日 0 点赞 0 评论 52 浏览 评分:0.0
三种方法解排序(C语言) 摘要:解题思路:注意事项:参考代码:方法1:使用冒泡排序#include // 冒泡排序函数 void bubbleSort(int arr[], int n) { int temp; …… 题解列表 2023年11月19日 0 点赞 0 评论 121 浏览 评分:9.9