-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path4sem_79.cpp
46 lines (40 loc) · 1.18 KB
/
4sem_79.cpp
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
#include <iostream>
#include <cmath>
#include <vector>
using namespace std;
// Function to check if it's safe to place a queen at position (k, i)
bool isSafe(const vector<int>& x, int k, int i) {
for (int j = 0; j < k; j++) {
if (x[j] == i || abs(j - k) == abs(x[j] - i))
return false;
}
return true;
}
// Function to print the positions of queens on the board
void printQueens(const vector<int>& x) {
for (int i : x) {
cout << i << "\t";
}
cout << endl;
}
// Function to find all possible solutions for placing n queens on an n x n chessboard
void nQueens(vector<int>& x, int n, int k = 0) {
for (int i = 0; i < n; i++) {
if (isSafe(x, k, i)) {
x[k] = i;
if (k == n - 1)
printQueens(x);
else
nQueens(x, n, k + 1);
}
}
}
int main() {
cout << "Enter the number of queens to be placed: ";
int n;
cin >> n;
vector<int> x(n, 0); // Initialize vector to store positions of queens
cout << "Possible arrangements for placing " << n << " queens on the chessboard:\n";
nQueens(x, n);
return 0;
}