码迷,mamicode.com
首页 > 编程语言 > 详细

选择排序

时间:2016-11-15 19:12:14      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:span   排序   code   blog   int   tmp   for   nbsp   dex   

void sort(int data[], int N){
    for(int i = 1; i < N; i++){
        int max = 0;
        int maxIndex = 0;
        for(int j = i; j <= N; j++){
            if(max < data[j]) {
                max = data[j];
                maxIndex = j;
            }
        }
        int tmp = data[i];
        data[i] = data[maxIndex];
        data[maxIndex] = tmp;
    }    
}

 

选择排序

标签:span   排序   code   blog   int   tmp   for   nbsp   dex   

原文地址:http://www.cnblogs.com/linux0537/p/6066676.html

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