题解 1738: 排序

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

筛选

排序(c++ sort)

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

冒泡法排序(c语言)

摘要: #include <stdio.h> int main() {     int n, a[123], i, j, t;       while (scanf("%d", &n) !=……
优质题解

保姆级教程(冒泡排序)

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

排序(挺细的一道题)

摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main {     public static void main(String[……

1738: 排序(冒泡排序)

摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() {     int n, t; // 声明整数变量n和t     int arr[100]; // ……

冒泡排序实现数组排序

摘要:解题思路:    先循环将数据输入到数组,然后冒泡排序,最后循环输出注意事项:    注意多组数据输入参考代码:#include<stdio.h> int main(){    int n;    i……

1738: 排序 C++!

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