题目描述
九数组分数 - 蓝桥云课 (lanqiao.cn)
题目分析
此题目实际上是使用dfs进行数字确定,每次循环中将当前数字与剩下的数字进行交换
eg.1与2、3、4、、、进行交换
2与3、4、、、进行交换
填空位置将其恢复原来位置即可,也就直接将其交换回去即可
#include <stdio.h>
void test(int x[])
{
int a = x[0]*1000 + x[1]*100 + x[2]*10 + x[3];
int b = x[4]*10000 + x[5]*1000 + x[6]*100 + x[7]*10 + x[8];
if(a*3==b) printf("%d/%d\n", a, b);
}
void f(int x[], int k)
{
int i,t;
if(k>=9){
test(x);
return;
}
for(i=k; i<9; i++){
{t=x[k]; x[k]=x[i]; x[i]=t;}
f(x,k+1);
t=x[k]; x[k]=x[i]; x[i]=t;
}
}
int main()
{
int x[] = {1,2,3,4,5,6,7,8,9};
f(x,0);
return 0;
}