题解 1738: 排序

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

排序-题解(C++代码)

摘要:解题思路:可以使用priority_queue优先队列自动排序十分方便并且时间短注意事项:参考代码:#include<iostream>#include<queue>using namespace s……

题解 1738: 排序

摘要:下面是选择排序 #include using namespace std; int a[5010]; int main() { int n; ……

排序(c++ sort)

摘要:参考代码:#include<iostream>#include <algorithm>using namespace std;int main(){            int n;    whil……

1738-排序(由小到大*多数据排序)

摘要:解题思路:用数组储存数据,两个for循环遍历数据,比较大小交换位置注意事项:会用到new获取数组大小参考代码:#include <iostream>using namespace std;void s……

1738: 排序(c++代码)

摘要:sort函数直接排,真不错 ```cpp #include #include using namespace std; int main() { int n; whil……

排序问题,江小白yyds

摘要:解题思路:用c++中的sort,直接排序注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int fun(int a,int b){ retur……

排序 题解(c++)(sort)

摘要:解题思路:直接用sort排序。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int n,a[1005];int main(){    w……
优质题解

保姆级教程(冒泡排序)

摘要:解题思路:冒泡排序;1.写好交换函数和判断函数                               2.在main函数中用new获取未知数组的大小并根据输入的数创建数组            ……