C语言训练-排序问题(2)C++使用sort排序 摘要:解题思路:自定义cmp,使sort()为降序函数注意事项:参考代码:#include<iostream>using namespace std;#include<algorithm>bool cmp(…… 题解列表 2024年12月07日 1 点赞 0 评论 103 浏览 评分:0.0
超级超级简单的1129冒泡法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10],t=0; for(int i=0;i<10;i++) scanf("%d",&a[i]);…… 题解列表 2024年11月27日 0 点赞 0 评论 120 浏览 评分:0.0
会1就看我这个,看我注释修改进行了 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int a[20]; int i, j, min, temp; for (i =…… 题解列表 2024年11月17日 0 点赞 0 评论 64 浏览 评分:9.9
1129: C语言训练-排序问题(2) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[100],j,i; for(i=0;i<10;i++) { scan…… 题解列表 2024年11月09日 0 点赞 0 评论 62 浏览 评分:0.0
1129: C语言训练-排序问题(2) 摘要:```cpp #include using namespace std; int px(int a[]){ for(int i=0;i>a[i]; sort(a,a+10); for…… 题解列表 2024年08月01日 0 点赞 0 评论 60 浏览 评分:0.0
1129排序问题(2)(sort排序) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;bool compare(int p1, int p2)…… 题解列表 2024年06月13日 0 点赞 0 评论 64 浏览 评分:0.0
排序问题(2) 摘要:解题思路:注意事项:参考代码:a=list(map(int,input().split()))a.sort()b=a[::-1]for i in b: print(i,end=' …… 题解列表 2024年03月27日 0 点赞 0 评论 74 浏览 评分:0.0
C语言训练-排序问题(2) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> #include<stdlib.h> int compare(const void *a,co…… 题解列表 2024年02月07日 0 点赞 0 评论 66 浏览 评分:0.0
C语言训练-排序问题(2) 摘要:解题思路: 用qsort函数快速排序,打好基础,方便以后的解题。注意事项: 记得用stdlib.h头文件参考代码:#incl 题解列表 2024年02月07日 0 点赞 0 评论 103 浏览 评分:0.0
三种方法解排序(C语言) 摘要:解题思路:注意事项:参考代码:方法1:使用冒泡排序#include // 冒泡排序函数 void bubbleSort(int arr[], int n) { int temp; …… 题解列表 2023年11月19日 0 点赞 0 评论 120 浏览 评分:9.9