您的位置:首页 > 其它

改进的冒泡算法

2009-10-08 21:54 218 查看
// improve_bubble.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include"iomanip.h"
#include "iostream.h"
#define MAXSIZE 100

//交换两个元素的值
void swap(int &a,int &b)
{
int temp;
temp = a;
a = b;
b = temp;
}
//改进的冒泡算法
void improve_bubble(int a[],int n)
{
int i,k,flag;
k = n-1;
flag = 1;
while(flag)
{
k = k-1;
flag = 0;
for(i = 0 ; i <= k ; i ++ )
if(a[i] > a[i+1])
{
swap( a[i] , a[i+1] );
flag = 1;
}
}
}

int main(int argc, char* argv[])
{
int a[MAXSIZE],n,i;
cout<<"please input the numbers of array"<<endl;
cin>>n;
cout<<"please input every value of element"<<endl;
for(i = 0;i < n;i++)
{
cout<<"please input the"<<setw(5)<<i<<setw(35)<<"element(enter Enter to switch):"<<endl;
cin>>a[i];
}
improve_bubble(a,n);

for(i = 0;i < n;i++)
cout<<a[i]<<setw(8);
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: