对单一数组的排序

前端之家收集整理的这篇文章主要介绍了对单一数组的排序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
#include <iostream>
using namespace std;
int main()
{
	int temp;
	int a[10]={5,4,7,2,8,10,30,15,1,9};
	for(int i=0;i<10;i++)
	{
		cout<<a[i]<<" ";
	}
	cout<<endl;
	for(int i=0;i<9;i++)
	{
		for(int j=i+1;j<10;j++)
		{
			if(a[i]>a[j])
			{
				temp=a[i];
				a[i]=a[j];
				a[j]=temp;
			}
		}
	}
	for(int i=0;i<10;i++)
	{
		cout<<a[i]<<" ";
	}
	system("pause");
	return 0;
}


#include <iostream>
using namespace std;
int main()
{
	int temp;
	int a[10]={5,9};
	for(int i=0;i<10;i++)
	{
		cout<<a[i]<<" ";
	}
	cout<<endl;
	for(int j=9;j>0;j--)
	{
	for(int i=0;i<j;i++)
	{
		if(a[i]>a[i+1])
		{
			temp=a[i];
			a[i]=a[i+1];
			a[i+1]=temp;
		}
	}
	}
	for(int i=0;i<10;i++)
	{
		cout<<a[i]<<" ";
	}
	system("pause");
	return 0;
}
原文链接:https://www.f2er.com/javaschema/285376.html

猜你在找的设计模式相关文章