騰訊面試題:根據上排給出的十個數,在其下排填出對應的十個數。

小飛_Xiaofei發表於2013-12-06

版權所有。所有權利保留。

歡迎轉載,轉載時請註明出處:

http://blog.csdn.net/xiaofei_it/article/details/17172769

根據上排給出的十個數,在其下排填出對應的十個數,要求下排每個數都是先前上排那十個數在下排出現的次數。

上排的十個數如下:
0,1,2,3,4,5,6,7,8,9

答案是:

6,2,1,0,0,0,1,0,0,0

我在這裡使用DFS,並且使用兩個函式互相遞迴。

程式碼如下:

#include <iostream>
#define MAX 10
using namespace std;

int a[MAX],su;

void output()
{
	for (int i=0;i<MAX;i++)
		cout<<a[i]<<' ';
	cout<<endl;
}

void alloc(int,int,int);
void go(int n)//嘗試第n位
{
	if (n==MAX)
	{
		output();
		return;
	}
	int have=0;
	for (int i=0;i<MAX;i++)
		if (a[i]==n) have++;
	int empty=0;
	for (int i=n;i<MAX;i++)
		if (a[i]==-1) empty++;
	int pos;
	for (pos=n+1;pos<MAX;pos++)
		if (a[pos]==-1) break;
	if (a[n]!=-1)
	{
		if (empty<a[n]-have||a[n]<have)
			return;
		alloc(n,a[n]-have,pos);
	}
	else
	{
		for (a[n]=n>have?n:have;a[n]<=have+empty;a[n]++)
		{
			if (a[n]!=n)
				alloc(n,a[n]-have,pos);
			else if (a[n]-1-have>=0)
				alloc(n,a[n]-1-have,pos);
		}
		a[n]=-1;
	}
}

void alloc(int n,int quantity,int pos)//在pos位之後分配quantity個n
{
	if (quantity==0)
	{
		go(n+1);
		return;
	}
	int empty=0;
	for (int i=pos+1;i<MAX;i++)
		if (a[i]==-1) empty++;
	int p;
	for (p=pos+1;p<MAX;p++)
		if (a[p]==-1) break;
	if (pos>=MAX) return;
	a[pos]=n;
	alloc(n,quantity-1,p);
	a[pos]=-1;
	if (empty>=quantity)
		alloc(n,quantity,p);
}

int main()
{
	for (int i=0;i<MAX;i++) a[i]=-1;
	go(0);
	return 0;
}


相關文章