题解 1738: 排序

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

筛选

1738: 排序 -选择排序

摘要:注意事项:注意输入输出格式参考代码:def selection_sort(nums):     length = len(nums)     for i in range(length):   ……

冒泡排序实现数组排序

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

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

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

1738: 排序 -希尔排序

摘要:**注意输入输出** ```python # 希尔排序 def shell_sort(nums): # 间隙初始为数组长度的一半 gap = len(nums) // 2 ……

无聊的星期六

摘要:try:     while input()!=&#39;&#39;:         z=input()         z=list(map(int,z.split()))        ……

排序(超简单的sort排序)

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