冒泡排序(正宗點吧)

#include <iostream>
#include <vector>
using namespace std;

void swap(int & a,int & b)
{
	a=a+b;
	b=a-b;
	a=a-b;
}

vector<int> & bubbleSort(vector<int> & v)
{
	int n=v.size();
	int flag;
	for(auto i =0;i < n;i++)
	{
		flag =false;
		for(auto j=n-1;j >i;j--)
		{
			if(v[j-1] > v[j])
			{
				swap(v[j-1],v[j]);
				flag =true;
			}
		}
		if(!flag) return v;
	}
	return v;
}


void print(vector<int> & v)
{
	vector<int>::iterator pos;
	for(pos = v.begin();pos!=v.end();pos++)
		cout<<*pos<<" ";
	cout<<endl;
}
void main()
{
	const int n=100;
	vector<int> v;
	v.reserve(n);
	for(int i =0;i<n;i++)
		v.push_back(rand()%100);
	print(v);
	//print(bubbleSort1(v));
	print(bubbleSort(v));
	system("pause");
}


 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章