使用函数的选择法排序
函数接口定义:
void sort( int a[], int n );
其中a
是待排序的数组,n
是数组a
中元素的个数。该函数用选择法将数组a
中的元素按升序排列,结果仍然在数组a
中。
裁判测试程序样例:
#include <stdio.h>
#define MAXN 10
void sort( int a[], int n );
int main()
{
int i, n;
int a[MAXN];
scanf("%d", &n);
for( i=0; i<n; i++ )
scanf("%d", &a[i]);
sort(a, n);
printf("After sorted the array is:");
for( i = 0; i < n; i++ )
printf(" %d", a[i]);
printf("\n");
return 0;
}
/* 你的代码将被嵌在这里 */
输入样例:
4
5 1 7 6
输出样例:
After sorted the array is: 1 5 6 7
代码:
void sort(int a[],int n){
int i,j,num;
for(i=0;i<n;i++){
for(j=0;j<n;j++){
if(a[i]<a[j]){
num=a[i];
a[i]=a[j];
a[j]=num;
}
}
}
}
愿我们都能成为我们想要去成为的人!
如果没有天赋,那就一直重复!
所有的为时已晚,其实是恰逢其时!
原文地址:https://blog.csdn.net/xinghuitunan/article/details/143832400
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!