排序 (C语言代码) 摘要:解题思路:多组测试嘛,用EOF就行了。但要注意,多组测试与多组输入是不同的。注意事项:不知道怎么了,我在dev c++用EOF提示错误,但是提交正确。有知道原因的道友可以告知一下。参考代码:#incl…… 题解列表 2019年04月11日 0 点赞 0 评论 399 浏览 评分:0.0
冒泡法排序(c语言) 摘要: #include <stdio.h> int main() { int n, a[123], i, j, t; while (scanf("%d", &n) !=…… 题解列表 2023年08月28日 0 点赞 0 评论 105 浏览 评分:0.0
冒泡排序实现数组排序 摘要:解题思路: 先循环将数据输入到数组,然后冒泡排序,最后循环输出注意事项: 注意多组数据输入参考代码:#include<stdio.h> int main(){ int n; i…… 题解列表 2023年11月11日 0 点赞 0 评论 115 浏览 评分:0.0
排序(n个数从小到大) 摘要: [========] #include void sort(int a[],int n) //定义一个排序函数sort { …… 题解列表 2024年08月23日 0 点赞 0 评论 268 浏览 评分:0.0
Hifipsysta-1738-归并排序(C++代码)归并排序法 摘要:```cpp #include using namespace std; const int MXN=1e5+10; int arr[MXN]; int tmp[MXN]; void…… 题解列表 2022年03月08日 0 点赞 0 评论 208 浏览 评分:0.0
排序(注意是有多组输入数据,每输入完一组数据要换行) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int n; while(~scanf("%d",&n))//多组输入 { int a[…… 题解列表 2023年10月10日 0 点赞 0 评论 92 浏览 评分:0.0
排序(超简单的sort排序) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int arr[200000]={0};int main(){ int n; wh…… 题解列表 2023年01月20日 0 点赞 0 评论 115 浏览 评分:0.0
排序 (C++代码)(非STL的SORT) 摘要:解题思路:这是一种分治思维,现将所排序选择的数字定位,再将左右两边的数用递归的方式再度进行这样的排序,此排序的时间复杂度为O(NlogN)注意事项:参考代码:(请不要直接抄袭)#include<bit…… 题解列表 2018年12月04日 0 点赞 0 评论 561 浏览 评分:0.0
1738: 排序题解 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> using namespace std; int main() { int…… 题解列表 2024年10月09日 0 点赞 0 评论 171 浏览 评分:0.0
题解 1738: 排序 摘要:解题思路:冒泡排序我首先定义的就是n,然后定义数组,输入,判断n对数据进行排序时需要两个变量i,j,不断遍历,每一次循环确定一个位置最后输出注意事项:我考虑了n的大小,冒泡排序的变量,可是一直出现错误…… 题解列表 2022年03月27日 0 点赞 0 评论 140 浏览 评分:0.0