C语言. .编写一个Sort函数,完成对整型数组元素升序排列。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C语言. .编写一个Sort函数,完成对整型数组元素升序排列。相关的知识,希望对你有一定的参考价值。
C语言. .编写一个Sort函数,完成对整型数组元素升序排列。
#include <stdio.h>void sort(int a[], int n) //选择排序
int i,j,k,t;
for(i = 0; i < n - 1; ++i)
k = i;
for(j = k + 1; j < n; ++j)
if(a[k] > a[j]) k = j;
if(k != i)
t = a[i];
a[i] = a[k];
a[k] = t;
int main()
int a[] = 21,16,30,21,8,19,33,26,28,27,24,50,13,12;
int i,n = sizeof(a)/sizeof(a[0]);
printf("排序前:\\n");
for(i = 0; i < n; ++i)
printf("%d ",a[i]);
printf("\\n");
sort(a,n);
printf("排序后:\\n");
for(i = 0; i < n; ++i)
printf("%d ",a[i]);
printf("\\n");
return 0;
参考技术A //希望我的回答对你的学习有帮助
#include <stdio.h>
#define N 3 //定义数组的大小,表示数组中可以放的个数
void Sort(int IntArray[N]) //冒泡算法
for (int i = 0; i < N - 1; i++)
for (int j = 0; j < N - i - 1; j++)
int temp;
if (IntArray[j] > IntArray[j + 1])
temp = IntArray[j];
IntArray[j] = IntArray[j + 1];
IntArray[j + 1] = temp;
int main()
int IntArray_T[N] = ;
for (int i = 0; i < N; i++) //输入
scanf("%d", &IntArray_T[i]);
Sort(IntArray_T);
for (int i = 0; i < N; i++) //输出
printf("%4d", IntArray_T[i]);
return 0;
以上是关于C语言. .编写一个Sort函数,完成对整型数组元素升序排列。的主要内容,如果未能解决你的问题,请参考以下文章
从零开始的Java开发1-6-1 集合排序:对整型和字符串Comparator接口Comparable接口
C语言高手来帮忙吧!!编写函数,求一个整型数组的第一个偶数的下标和最后一个偶数的下标。