2012百度实习生面试题一道,打乱100个数的顺序,越乱越好

题目如下:

一个数组中有0-99共100个数,要求在在O(n)的时间内打乱这个数组的顺序,越乱越好。


我的思路如下:


设置一个bound值(最初bound值为99),每次循环,随机生成一个数组下标tmpIndex=rand()%bound,交换a[bound]和a[tmpIndex];

每次迭代后,bound值减小1,直到减小到bound指向第一个元素位置。这也就是为什么要用while(Bound >= 1)


#include <iostream>
#include <cmath>
#include <cstdlib>
using namespace std;

void swap(int & a, int & b)
{
	if(a == b)
		return;
	int tmp = a;
	a = b;
	b = tmp;
}

int main()
{
	srand(time(0));
	int a[100];
	for(int i=0; i<100; i++)
		a[i] = i;
	int highBound = 99, tmpIndex;
	while(highBound >= 1)
	{
		tmpIndex = rand() % highBound;
		swap(a[tmpIndex], a[highBound]);
		highBound--;
	}
	for(int i=0; i<100; i++)
		cout << a[i] << " " ;
	cout << endl;
	return 0;
}


执行结果如下:


评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值