[编程入门]选择排序 摘要:解题思路:注意事项:参考代码:a=list(map(int,input().split()))a=sorted(a)for i in a: print(i,end=" ")…… 题解列表 2023年06月09日 0 点赞 0 评论 90 浏览 评分:0.0
题目 1023: [编程入门]选择排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i, j, temp; int arr[10] = {0}; for (i=0;…… 题解列表 2023年05月06日 0 点赞 0 评论 50 浏览 评分:0.0
1023题: 选择排序 摘要:# 思路代码 选择排序的思路会,但是实现的代码不太会 # 参考代码1 ```c #include void selectsort(int a[],int n); int main() {…… 题解列表 2023年05月05日 0 点赞 0 评论 59 浏览 评分:0.0
1023题: 选择排序 摘要:# 思路代码 选择排序的思路会,但是实现的代码不太会 # 参考代码1 ```c #include void selectsort(int a[],int n); int main() {…… 题解列表 2023年05月05日 0 点赞 0 评论 96 浏览 评分:0.0
排序最简单代码Python 入门级别 摘要:解题思路:注意事项:参考代码:ls=list(map(int,input().split())) #将一串数处理后,放入列表ls.sort()for j in ls: print(j) …… 题解列表 2023年03月27日 0 点赞 0 评论 72 浏览 评分:0.0
简单的冒泡排序 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;void bubblesort(int *a,int n){ bool fla…… 题解列表 2023年03月10日 0 点赞 0 评论 75 浏览 评分:0.0
c++解题思路 摘要: ```cpp #include #define N 10 using namespace std; int main() { int a[N]; int b=0; …… 题解列表 2023年03月07日 0 点赞 0 评论 111 浏览 评分:8.0
LikeWater - 1023: [编程入门]选择排序 摘要:####简单选择排序奉上!!!对于很多简单的排序我总是热衷于自己编写,那样对自己的能力提升很有帮助,并且对于排序算法的掌握也能醍醐灌顶,希望大家能参考! ```cpp #include #i…… 题解列表 2023年02月28日 0 点赞 1 评论 167 浏览 评分:9.9
两种方法编写题解 1023: [编程入门]选择排序 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>#include<iomanip>using namespace std;int main() { …… 题解列表 2023年01月13日 0 点赞 0 评论 62 浏览 评分:0.0
【编程入门】用函数实现冒泡排序(c语言代码) 摘要:解题思路:数组元素两两之间进行比较,较大的往后走,称为冒泡。 第一次循环完成后最大的数会走到数组最后面,第二大的数会走到倒数第二位,以此类推。 …… 题解列表 2022年12月25日 0 点赞 0 评论 114 浏览 评分:9.9