题解 1738: 排序

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

筛选

排序 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<cstdio>int arr[100];void swap(int &a,int& b){ int temp=a; a=b; b=temp;}void ……

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

摘要:这题我用的是快速排序。 ```cpp #include using namespace std; #define N 1000 void swap(int * a,int i,int j) ……

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

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

排序问题,江小白yyds

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

 编写题解 1738: 排序

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<vector>#include<algorithm>void print(v……

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

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

排序(超简单的sort排序)

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int arr[200000]={0};int main(){  int n; wh……