题解 1129: C语言训练-排序问题(2)

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

筛选

这个方法还不错!

摘要:解题思路:对于本体解法,这里将运用结构体struct将10个数从大到小依次排列注意事项:malloc参考代码:#include<stdio.h> #include<malloc.h> #defin……

三种方法解排序(C语言)

摘要:解题思路:注意事项:参考代码:方法1:使用冒泡排序#include // 冒泡排序函数 void bubbleSort(int arr[], int n) {     int temp;    ……

C语言训练-排序问题<2>

摘要:解题思路:用嵌套for循环和数组交换语句详情看代码注意事项:参考代码:#include<stdio.h>int main(){    int a[10], i, t, j;    for (i = 0……

1129: C语言训练-排序问题<2>

摘要:解题思路:冒泡排序把数从大往小排。注意事项:注意是从大往小排。参考代码:#include<iostream> using namespace std; int main() {     int……