记录自己答案:1023
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10],i,j,min,t,d; for(i=0;i<10;i++) { scanf(……
快速排序 求解 时间复杂度低
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;const int N = 1e6 + 10;int n;int a[N];voi……
选择排序,通过一个个比较得出
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ int i,j,t; int a[10]; for(i=0;i<10……
1023-数组排序的两种基本算法-冒泡,选择,自定义函数选择排序
摘要:数组排序的两种方法
# 一.冒泡排序
是一种简单易懂的算法:即在一个数组中比较相邻两位的大小并进行排序的方法。例如;arr[10]={0,1,2,4,3,6,5,8,7,9};
……
1023一行解(Python)
摘要:解题思路:略注意事项:虽然没用指定方法,但是秉持着解决问题为第一要务,还是记录一下吧参考代码:for data in sorted(list((map(int, input().split()))))……
1023: [编程入门]选择排序
摘要:```c
#include
const int NUM = 10;
int main()
{
int i = 0,min=0,min_index=0;
int a[11];
……