题解 1738: 排序

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

筛选

 编写题解 1738: 排序

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

1738: 排序题解

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> using namespace std; int main() {     int……

排序 (C++代码)

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

排序(超简单的sort排序)

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

1738: 排序 C++!

摘要:解题思路:std::sort   最坏时间复杂度0(nlogn)注意事项:参考代码:#includeusing namespace std;int a[5000];int main(){ int n;……

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

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

保姆级教程(冒泡排序)

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

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

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