冒泡和选择排序

// BubbleSortCpp.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"

using namespace std;
void BubbleSort(int *a,int len);

void SelectionSort(int *a,int len);
int _tmain(int argc, _TCHAR* argv[])
{
	int size=0;
	cout<<"演示冒泡排序示例:"<<endl;
	int a[10];
	for(int i=0;i<10;i++)
	{
		a[i]=rand()/1000+100;
		std::cout<<a[i]<<",";
	}
	cout<<endl;
	BubbleSort(a,10);
	cout<<"冒泡排序结果为:"<<endl;
	for(int i=0;i<10;i++)
	{
		std::cout<<a[i]<<",";
	}
	cout<<endl;
	cout<<"演示选择排序示例:"<<endl;
	int b[10];
	for(int i=0;i<10;i++)
	{
		b[i]=rand()/1000+100;
		std::cout<<b[i]<<",";
	}
	cout<<endl;
	SelectionSort(b,10);
	cout<<"选择排序结果为:"<<endl;
	for(int i=0;i<10;i++)
	{
		std::cout<<b[i]<<",";
	}
	cout<<endl;
	std::cin>>size;
	delete a;
	delete b;
	return 0;
}
//冒泡排序
void BubbleSort(int *a,int len)
{
	int k,h;
	int temp;
	for(int i=0;i<len-1;i++)
	{
		k=i;
		for(int j=len-1;j>i;j--)
		{
			if(a[j-1]>a[j])
			{
			
				temp=a[j-1];
				a[j-1]=a[j];
				a[j]=temp;
			}
		}
	}
}
//选择排序
void SelectionSort(int *a,int len)
{
	int k,h;
	int temp;
	for(int i=0;i<len-1;i++)
	{
		k=i;
		for(int j=i+1;j<len;j++)
		{
			if(a[j]<a[k])
			{
				k=j;
			}
		}
		if(k!=i)
		{
			temp=a[i];
			a[i]=a[k];
			a[k]=temp;
		}
		
	}
}

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

太一吾鱼水

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值