最简单的冒泡排序

好久没有用冒泡排序了。。

贴一个最常用的。。

	for (int i=0;i<10;i++)
		for(int j=0;j<10-1-i;j++)
		{
			if (a[j]<a[j+1])
			{
				temp=a[j];
				a[j]=a[j+1];
				a[j+1]=temp;
			}
		}
posted @ 2010-11-23 15:31  瓜蛋  阅读(292)  评论(0编辑  收藏  举报