C语言训练-排序问题<1> 摘要:#include<stdio.h> int main(){ int arr[4]; for(int i=0;i<4;i++){ scanf("%d",&arr[i]);…… 题解列表 2023年06月07日 0 点赞 0 评论 77 浏览 评分:0.0
C++代码进行解题,思路可与C语言共享 摘要:解题思路:运用数组进行数据存储,遍历所有数组与每次参考的数组进行比较大小,再进行交换。注意事项:注意m的原数据重新覆盖#include <iostream>using namespace std;in…… 题解列表 2023年07月15日 0 点赞 0 评论 50 浏览 评分:0.0
1128: C语言训练-排序问题<1> 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;long long a[10];int main(){ for(int i=…… 题解列表 2023年09月23日 0 点赞 0 评论 84 浏览 评分:0.0
1128: C语言训练-排序问题<1> 摘要:解题思路:注意事项:参考代码://计数排序:以空间换时间#include <bits/stdc++.h>using namespace std;long long tong[100000];int m…… 题解列表 2023年09月23日 0 点赞 0 评论 66 浏览 评分:0.0
快速排序法 摘要:解题思路:先创建一个数组,输入四个整数,再找随便找到数组其中的一个数值定义为x(我在这里找的时中间值),定义两个指针 i 和 j 分别指向数组的最左端和最右端。然后两个指针从两端开始向x扫描,当左指针…… 题解列表 2023年09月30日 0 点赞 0 评论 215 浏览 评分:9.9
C语言训练-排序问题<1> 摘要:**思路:** 冒泡法 **代码:** ```c #include int main() { int a[10],i,j,t; for(i=0;i…… 题解列表 2023年10月15日 0 点赞 0 评论 71 浏览 评分:0.0
C语言训练-排序问题(1) 摘要:解题思路: 用快速排序函数qsort注意事项: 注意头文件stdlib.h参考代码:#include<stdio.h& 题解列表 2024年02月07日 0 点赞 0 评论 43 浏览 评分:0.0
【C语言题解/冒泡排序】C语言训练-排序问题(1) 摘要:``` #include "stdio.h" int a[10]={0}; //交换函数 void swap(int*,int*); int main(){ int i,j,x; …… 题解列表 2024年03月13日 0 点赞 0 评论 106 浏览 评分:0.0
小白随便写的,记录一下 摘要:```python # 注意的还是列表的输入 这里需要map和list一起接收一个int型的列表 li = list(map(int, input().split())) li.sort() …… 题解列表 2024年03月24日 0 点赞 0 评论 69 浏览 评分:0.0
1128排序问题(1)(sort排序) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;bool compare(int p1, int p2)…… 题解列表 2024年06月13日 0 点赞 0 评论 79 浏览 评分:0.0