You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
918 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#include<stdio.h>
int a[10];//开一个数组,用来装每一位的数字,3位一个数共9位,把索引值为0的不要计10个
int book[10] = { 0 }; //标记哪个数是否用过了初始值全是0表示都没用过
int total = 0; //一共多少个解
void dfs(int step) {
int i;
//到第10步就不用再计算了可以出结果了
if (step == 9 + 1) {
//发现有符合条件的就记录下来
if (a[1] * 100 + a[2] * 10 + a[3] + a[4] * 100 + a[5] * 10 + a[6] == a[7] * 100 + a[8] * 10 + a[9]) {
total++;
printf("%d%d%d+%d%d%d=%d%d%d\n", a[1], a[2], a[3], a[4], a[5], a[6], a[7], a[8], a[9]);
}
return;
}
//满满的都是套路
for (i = 1; i <= 9; i++) {
if (book[i] == 0) {
a[step] = i;
book[i] = 1;
//递归进行深度优先搜索
dfs(step + 1);
book[i] = 0;
}
}
return;
}
int main() {
dfs(1);
printf("total = %d\n", total / 2);
return 0;
}