选择排序基本排序 摘要:解题思路:就考基本排序注意事项:参考代码:# include <iostream> using namespace std; int main() { int a[10]; f…… 题解列表 2022年10月15日 0 点赞 0 评论 434 浏览 评分:0.0
快速排序 求解 时间复杂度低 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;const int N = 1e6 + 10;int n;int a[N];voi…… 题解列表 2022年10月15日 0 点赞 0 评论 462 浏览 评分:0.0
C语言 选择顺序& 摘要:解题思路:见注释注意事项:参考代码:#include<stdio.h>int main(){ int nums[10]= { 0 }; for(int i=0;i<sizeof(nums)…… 题解列表 2022年10月16日 0 点赞 0 评论 425 浏览 评分:0.0
1023一行解(Python) 解题思路:略注意事项:虽然没用指定方法,但是秉持着解决问题为第一要务,还是记录一下吧参考代码:fordatainsorted(list((map(int,input().split())))):print(data) 题解列表 2022年11月04日 0 点赞 0 评论 533 浏览 评分:0.0
数组的选择排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10],i,t,k,j; for(i=0;i<10;i++) …… 题解列表 2022年11月09日 0 点赞 0 评论 505 浏览 评分:0.0
1023: [编程入门]选择排序 ```c#includeconstintNUM=10;intmain(){inti=0,min=0,min_index=0;inta[11];for(;i 题解列表 2022年11月14日 0 点赞 0 评论 573 浏览 评分:0.0 编写题解 1023: [编程入门]选择排序 摘要:解题思路:找到最小值,和第一个元素交换参考代码: import java.util.Scanner; public class Main { public static void mai…… 题解列表 2022年12月19日 0 点赞 0 评论 556 浏览 评分:0.0 [编程入门]选择排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a[10]; int secm(int x[],int y); for(…… 题解列表 2022年12月21日 0 点赞 0 评论 426 浏览 评分:0.0 两种方法编写题解 1023: [编程入门]选择排序 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>#include<iomanip>using namespace std;int main() { …… 题解列表 2023年01月13日 0 点赞 0 评论 501 浏览 评分:0.0 简单的冒泡排序 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;void bubblesort(int *a,int n){ bool fla…… 题解列表 2023年03月10日 0 点赞 0 评论 487 浏览 评分:0.0 « 12...282930313233343536 »
编写题解 1023: [编程入门]选择排序 摘要:解题思路:找到最小值,和第一个元素交换参考代码: import java.util.Scanner; public class Main { public static void mai…… 题解列表 2022年12月19日 0 点赞 0 评论 556 浏览 评分:0.0
[编程入门]选择排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a[10]; int secm(int x[],int y); for(…… 题解列表 2022年12月21日 0 点赞 0 评论 426 浏览 评分:0.0
两种方法编写题解 1023: [编程入门]选择排序 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>#include<iomanip>using namespace std;int main() { …… 题解列表 2023年01月13日 0 点赞 0 评论 501 浏览 评分:0.0
简单的冒泡排序 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;void bubblesort(int *a,int n){ bool fla…… 题解列表 2023年03月10日 0 点赞 0 评论 487 浏览 评分:0.0