排序(超简单的sort排序) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int arr[200000]={0};int main(){ int n; wh…… 题解列表 2023年01月20日 0 点赞 0 评论 104 浏览 评分:0.0
1738: 排序(C语言) 摘要:解题思路:冒泡排序算法暴力解决。注意事项:注意空格和多组输入。参考代码:#include<stdio.h>#define N 101int main(){ int a[N],n,t=0; int j,…… 题解列表 2023年01月17日 0 点赞 0 评论 81 浏览 评分:0.0
冒泡排序法C语言 摘要:解题思路:冒泡排序法注意事项:注意i和j的使用。参考代码:#include<stdio.h>#include<stdlib.h>int main(){ int n,num[100]; in…… 题解列表 2022年12月03日 0 点赞 0 评论 993 浏览 评分:9.9
先求sum,找出最大值相减即可解决。 摘要:解题思路:先求总和,然后找出最大值;最后相减即可得到答案。注意事项:注意一下输出格式就好了,然后它是多组的输出。所以需要前面是while(scanf("%d",&a)!=EOF)参考代码://不与最大…… 题解列表 2022年11月25日 0 点赞 0 评论 185 浏览 评分:6.0
排序 (Java代码) 摘要:import java.io.OutputStreamWriter; import java.io.PrintWriter; import java.util.*; public class M…… 题解列表 2022年06月08日 0 点赞 0 评论 298 浏览 评分:6.0
排序 题解(c++)(sort) 摘要:解题思路:直接用sort排序。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int n,a[1005];int main(){ w…… 题解列表 2022年05月07日 0 点赞 0 评论 242 浏览 评分:6.0
编写题解 1738: 排序 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<vector>#include<algorithm>void print(v…… 题解列表 2022年04月20日 0 点赞 0 评论 190 浏览 评分:0.0
题解 1738: 排序 摘要:解题思路:冒泡排序我首先定义的就是n,然后定义数组,输入,判断n对数据进行排序时需要两个变量i,j,不断遍历,每一次循环确定一个位置最后输出注意事项:我考虑了n的大小,冒泡排序的变量,可是一直出现错误…… 题解列表 2022年03月27日 0 点赞 0 评论 137 浏览 评分: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 评论 199 浏览 评分:0.0
1738: 排序 (c语言)(!=EOF用法)(解释详细,思路清晰)(代码简短易懂) 摘要:解题思路: 在选择排序外面加一个结束标志,就能实现多组数据的排序,当程序运行时,如果不加" != EOF",那么这个程序就是个死循环,会一直运行下去;加上" != EOF"后该程序就不是死循环了,…… 题解列表 2022年02月23日 0 点赞 2 评论 1106 浏览 评分:9.1