-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnQueen.cpp
More file actions
79 lines (72 loc) · 1.43 KB
/
nQueen.cpp
File metadata and controls
79 lines (72 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#include<iostream>
#include<math.h>
using namespace std;
int place(int row,int column);
void print(int n);
int board[30],count;
void queen(int row,int n);
int main()
{
int n,i,j;
cout<<" - N Queens Problem Using Backtracking -";
cout<<"\n\nEnter number of Queens:";
cin>>n;
queen(1,n);
return 0;
}
void print(int n) //function for printing the solution
{
int i,j;
cout<<"\n\nSolution %d:\n\n"<<++count;
for(i=1;i<=n;++i)
{
cout<<i<" ";
}
for(i=1;i<=n;++i)
{
cout<<"\n\n"<<i<<" ";
for(j=1;j<=n;++j) //for nxn board
{
if(board[i]==j)
{
cout<<"\tQ"; //queen at i,j position
}
else
{
cout<<"\t-"; //empty slot
}
}
}
}
/*funtion to check conflicts
If no conflict for desired postion returns 1 otherwise returns 0*/
int place(int row,int column)
{
int i;
for(i=1;i<=row-1;++i)
{
//checking column and digonal conflicts
if(board[i]==column)
return 0;
else
if(abs(board[i]-column)==abs(i-row))
return 0;
}
return 1; //no conflicts
}
//function to check for proper positioning of queen
void queen(int row,int n)
{
int column;
for(column=1;column<=n;++column)
{
if(place(row,column))
{
board[row]=column; //no conflicts so place queen
if(row==n) //dead end
print(n); //printing the board configuration
else //try queen with next position
queen(row+1,n);
}
}
}