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

[1] 算法之路 - 选择排序

时间:2014-08-21 00:16:23      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:算法   排序   

选择排序算法

1. 将要排序的对象分作2部份,一个是已排序的,一个是未排序的

2.  从后端未排序部份选择一个最小值,并放入前端已排序部份的最后一个

e.g:

排序前:70 80 31 37 10 1 48 60 33 80


[1] 80 31 37 10 7048 60 33 80 选出最小值1

[1 10] 31 37 80 7048 60 33 80 选出最小值10

[1 10 31] 37 80 7048 60 33 80 选出最小值31

[1 10 31 33] 80 7048 60 37 80 ......

[1 10 31 33 37] 7048 60 80 80 ......

[1 10 31 33 37 48]70 60 80 80 ......

[1 10 31 33 37 4860] 70 80 80 ......

[1 10 31 33 37 4860 70] 80 80 ......

[1 10 31 33 37 4860 70 80] 80 ...... 


#define SWAPER(X,Y){int t;t=X;X=Y;Y=t;}
	
选择排序 – 程序片段:
int SelectionSort(int a[],int lens)
{
	int i,j,k;
	for(i=0;i<lens;i++)
	{
		int minIndex = i;
		for(j=i+1;j<lens;j++)
		{
			if(a[minIndex]>a[j])
			{
				minIndex=j;
			}
		}
		if(i!=minIndex) SWAPER(a[i],a[minIndex]);
	}
	return 0;
}
int SelectionSort2(int a[],int lens)
{
	int i,j,k;
	for(i=0;i<lens;i++)
	{
		for(j=i+1;j<lens;j++)
		{
			if(a[i]<a[j])
			{
				SWAPER(a[i],a[j]);
			}
		}
	}
	return 0;
}


[1] 算法之路 - 选择排序,布布扣,bubuko.com

[1] 算法之路 - 选择排序

标签:算法   排序   

原文地址:http://blog.csdn.net/vivitue/article/details/38715789

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