面试题28—相关题目

题目:输入一个含有8个数字的数组,判断有没有可能把这8个数字分别放到正方体8个顶点,使得正方体上三组相对的面上的4个顶点的和相等。

代码示例:

#include<iostream>
#include<string>
#include<iomanip>
using namespace std;

void swap(int &c1,int &c2)
{
	int temp = c1;
	c1 = c2;
	c2 = temp;
}
void PrintAllKinds(int a[], int from, int to)
{
	if (a == NULL)
		return;
	if (from == to)
	{
		if (
			(a[0] + a[1] + a[2] + a[3] == a[4] + a[5] + a[6] + a[7])
			&& (a[0] + a[2] + a[4] + a[6] == a[1] + a[3] + a[5] + a[7])
			&& (a[0] + a[1] + a[4] + a[5] == a[2] + a[3] + a[6] + a[7])
			)
		{
			for (int i = 0; i <= to; i++)
				cout << a[i];
			cout << endl;
		}	
	}
	else
	{
		for (int i = from; i <= to; i++)
		{
			swap(a[from], a[i]);
			PrintAllKinds(a, from + 1, to);
			swap(a[from], a[i]);
		}
	}
}

int main()
{
	int const n = 8;
	int a[n] = { 1,4,6,3,6,4,3,1};
	int from = 0;
	int to = n-1;
	PrintAllKinds(a, from, to);
}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值