C语言训练-排序问题<1> 摘要:**思路:** 冒泡法 **代码:** ```c #include int main() { int a[10],i,j,t; for(i=0;i…… 题解列表 2023年10月15日 0 点赞 0 评论 70 浏览 评分:0.0
快速排序法 摘要:解题思路:先创建一个数组,输入四个整数,再找随便找到数组其中的一个数值定义为x(我在这里找的时中间值),定义两个指针 i 和 j 分别指向数组的最左端和最右端。然后两个指针从两端开始向x扫描,当左指针…… 题解列表 2023年09月30日 0 点赞 0 评论 210 浏览 评分:9.9
1128: C语言训练-排序问题<1> 摘要:解题思路:注意事项:参考代码://计数排序:以空间换时间#include <bits/stdc++.h>using namespace std;long long tong[100000];int m…… 题解列表 2023年09月23日 0 点赞 0 评论 64 浏览 评分: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 评论 82 浏览 评分:0.0
C++代码进行解题,思路可与C语言共享 摘要:解题思路:运用数组进行数据存储,遍历所有数组与每次参考的数组进行比较大小,再进行交换。注意事项:注意m的原数据重新覆盖#include <iostream>using namespace std;in…… 题解列表 2023年07月15日 0 点赞 0 评论 48 浏览 评分:0.0
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 评论 75 浏览 评分:0.0
1128:两行代码 摘要:解题思路:注意事项:参考代码:for x in sorted([int(x) for x in input().split()]): print(x, end=' ')…… 题解列表 2023年05月24日 0 点赞 0 评论 157 浏览 评分:0.0
还是喜欢简短的代码,哎哟看到长代码就心浮气躁这可肿么办哟 摘要:解题思路:就是一冒泡排序,多写的我的数据结构老师哈哈哈注意事项:参考代码:#include<stdio.h> int main(){ int a[4]; int temp; for…… 题解列表 2023年04月05日 0 点赞 0 评论 43 浏览 评分:0.0
LikeWater - 1128: C语言训练-排序问题<1> 摘要:####本题我采用了直接插入排序,并且附上了代码大家有需要可以自己提取,还有冒泡排序,简单选择排序,快速排序的代码在后面题目中我给大家附上! ```cpp #include #include…… 题解列表 2023年02月28日 0 点赞 1 评论 210 浏览 评分:9.9
1128: C语言训练-排序问题<1> 三行解决 摘要:解题思路:又是水的一题注意事项:不要直接输出列表,用for循环参考代码:a=list(map(int,input().split()))for i in range(len(a)): print…… 题解列表 2023年02月10日 0 点赞 0 评论 78 浏览 评分:0.0