解题思路:深度优先搜索遍历dfs求解
注意事项:
参考代码:
#include <deque>
#include <algorithm>
#include <iostream>
#include <cstdlib>
#include <iterator>
#include <numeric>
#include <iomanip>
#include <sstream>
#include <string>
#include <cmath>
#include <string.h>
using namespace std;
int v[10];
int a[10];
void jugde()
{
int x=a[1]*100+a[2]*10+a[3];
int y=a[4]*100+a[5]*10+a[6];
int z=a[7]*100+a[8]*10+a[9];
if(z==x*3&&y==x*2)
{
cout<<x<<" "<<y<<" "<<z<<endl;
}
}
void dfs(int n)
{
if(n==10)
{
jugde();
}
else
{
for(int i=1;i<=9;i++)
{
if(!v[i])
{
v[i]=1;
a[n]=i;
dfs(n+1);
v[i]=0;
}
}
}
}
int main()
{
dfs(1);
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)浏览:1550 |
C语言程序设计教程(第三版)课后习题6.7 (C语言代码)浏览:548 |
【出圈】 (C语言代码)浏览:824 |
C二级辅导-阶乘数列 (C语言代码)浏览:736 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:1261 |
C语言程序设计教程(第三版)课后习题6.5 (C语言代码)浏览:660 |
【金明的预算方案】 (C++代码)浏览:873 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:721 |
前10名 (C语言代码)浏览:773 |
敲七 (C++代码)浏览:1119 |