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

选择排序

时间:2014-08-05 00:00:00      阅读:276      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   数据   for   ar   div   

/**
**  @author:hushunfeng
**    选择排序,从大到小排列
*/
#include<stdio.h>

//在所给数组的一段区间内计算出最大值
//并得到其最大元素的下标
int getMaxIndex(int array[],int k,int len) {
    //每一轮最大值所在的下标
    int index = 0;
    int tempMax;
    int i;
    for(i=k;i<len;i++) { 
        if(array[i]>tempMax) {
            tempMax = array[i];
            index = i;
        }
    }
    //return 
    return index;
}

//每轮得到的最大元素和所在区间最前面的元素进行互换
void swapElement(int array[],int index,int k) {
    int temp;
    temp = array[k];
    array[k] = array[index];
    array[index] = temp;
}

//程序入口
void main() {
    
    //定义输入的整型数组长度为10
    #define LEN 10

    int array[LEN];
    int index;
    int k;
    int i;
    int count;

    printf("请输入%d个整型数据:",LEN);
    for(count=0;count<LEN;count++) {
        scanf("%d",&array[count]);
    }
    for(k=0;k<(LEN-1);k++) {
        index = getMaxIndex(array,k,LEN);
        swapElement(array,index,k);
    }

    printf("输入的数据从大小排序为:");
    for(i=0;i<LEN;i++) {
        printf("%d  ",array[i]);
    }
}
 

 

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

选择排序

标签:style   blog   color   io   数据   for   ar   div   

原文地址:http://www.cnblogs.com/hushunfeng/p/3891054.html

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