题解 1128: C语言训练-排序问题(1)

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

筛选

1128: C语言训练-排序问题(1)

摘要:解题思路:注意事项:参考代码:    #include <bits/stdc++.h>    using namespace std;    typedef long long ll;    cons……

1128排序问题(1)(sort排序)

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;bool compare(int p1, int p2)……

1128: C语言训练-排序问题<1>

摘要:解题思路:注意事项:参考代码://计数排序:以空间换时间#include <bits/stdc++.h>using namespace std;long long tong[100000];int m……

1128: C语言训练-排序问题<1>

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;long long a[10];int main(){    for(int i=……

C++代码进行解题,思路可与C语言共享

摘要:解题思路:运用数组进行数据存储,遍历所有数组与每次参考的数组进行比较大小,再进行交换。注意事项:注意m的原数据重新覆盖#include <iostream>using namespace std;in……

LikeWater - 1128: C语言训练-排序问题<1>

摘要:####本题我采用了直接插入排序,并且附上了代码大家有需要可以自己提取,还有冒泡排序,简单选择排序,快速排序的代码在后面题目中我给大家附上! ```cpp #include #include……

c++排序问题

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<algorithm>int main(){ int a[4]={0}; in……