码迷,mamicode.com
首页 > 其他好文 > 详细

选择排序

时间:2014-07-24 22:26:02      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   art   for   re   c   

#include<stdio.h>
void selectSort(int a[],int length);
void main()
{  
    int i;
    float start=0,finish=0;
    int a[10]={10,15,4,2,5,3,6,9,7,1};

    printf("排序前:\n");
    for(i=0;i<10;i++)
      printf("%d ",a[i]);

    printf("\n排序后:\n");
    selectSort(a,10);
   
}

 void selectSort(int a[],int length)
 {
   int i,j,temp;
   for(i=0;i<length-1;i++)
       for(j=i+1;j<length;j++)
       {
           if(a[i]>a[j])
           {
               temp=a[i];
               a[i]=a[j];
               a[j]=temp;
           } 
   }
       for(i=0;i<length;i++)
           printf("%d ",a[i]);
       printf("\n");

 }

选择排序,布布扣,bubuko.com

选择排序

标签:style   blog   color   io   art   for   re   c   

原文地址:http://www.cnblogs.com/thrive/p/3866253.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!