C/C++教程

C语言排序算法

本文主要是介绍C语言排序算法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
#include<stdio.h>
void main()
{
   void sort(int a[],int n);//函数声明
    int a[10],i;
    printf("please input your data\n");
    for(i=0;i<10;i++)
    {
        scanf("%d",&a[i]);
    }
    printf("the array is :\n");
    for(i=0;i<10;i++)
        printf("%4d",a[i]);
        printf("\n");
    sort(a,10);
    printf("排序好的数的顺序为\n");
    for(i=0;i<10;i++)
      printf("%4d",a[i]);
}
//排序算法
void sort(int a[],int n)
{
    int i,j,temp;
    for(i=0;i<n-1;i++)
        for(j=0;j<n-1-i;j++)
        if(a[j]<a[j+1])
    {
        temp=a[j+1];
        a[j+1]=a[j];
        a[j]=temp;
    }
}

运行结果:please input your data
11 22 23 1 7 4 22 99 4 0
the array is :
11 22 23 1 7 4 22 99 4 0
排序好的数的顺序为
99 23 22 22 11 7 4 4 1 0
Process returned 4 (0x4) execution time : 25.908 s
Press any key to continue.

这篇关于C语言排序算法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!