数组排序 -题解(C++代码)STL+vector 摘要:```javascript #include using namespace std; const int N=1e3; int cmp(int a,int b) { return a>…… 题解列表 2021年02月21日 0 点赞 0 评论 545 浏览 评分:9.9
数组排序 -题解(C语言代码) 摘要:#include #include #include sort(int a[],int n) { int i,j,t; for(i=0;i…… 题解列表 2020年04月11日 0 点赞 0 评论 837 浏览 评分:6.7
数组排序 -题解(C++代码) 摘要:```cpp #include using namespace std; int main() { int n; while(cin>>n){ in…… 题解列表 2020年03月15日 0 点赞 0 评论 631 浏览 评分:0.0
数组排序 (C语言代码)(两种方法,献丑) 摘要:方法一; #include<stdio.h> int main() { int a[10000],b[10000]; int i,j,s; while(scanf("%d",&s)!…… 题解列表 2019年04月13日 2 点赞 0 评论 797 浏览 评分:0.0
数组排序 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<stdlib.h>#define N 10000int cmp(const void *z,const void *…… 题解列表 2018年11月28日 0 点赞 0 评论 572 浏览 评分:0.0
数组排序 (C++代码)可AC 摘要:解题思路:我的解题思路比较简单,就是建立两个数组数组A和数组B,数组B用来保存数组A的值对数组B的值进行快排,这样子能让数组B进行从小到大进行排序,同时也就是对应数组A下标例如数组a[4]={0,3,…… 题解列表 2018年08月12日 7 点赞 0 评论 1171 浏览 评分:5.4