
- C++ Basics
- C++ Home
- C++ Overview
- C++ Environment Setup
- C++ Basic Syntax
- C++ Comments
- C++ Data Types
- C++ Variable Types
- C++ Variable Scope
- C++ Constants/Literals
- C++ Modifier Types
- C++ Storage Classes
- C++ Operators
- C++ Loop Types
- C++ Decision Making
- C++ Functions
- C++ Numbers
- C++ Arrays
- C++ Strings
- C++ Pointers
- C++ References
- C++ Date & Time
- C++ Basic Input/Output
- C++ Data Structures
- C++ Object Oriented
- C++ Classes & Objects
- C++ Inheritance
- C++ Overloading
- C++ Polymorphism
- C++ Abstraction
- C++ Encapsulation
- C++ Interfaces
C++ Program to Solve N-Queen Problem
This problem is to find an arrangement of N queens on a chess board, such that no queen can attack any other queens on the board.
The chess queens can attack in any direction as horizontal, vertical, horizontal and diagonal way.
A binary matrix is used to display the positions of N Queens, where no queens can attack other queens. Here, we solve 8 queens problem.
Input
The size of a chess board. it is 8 here as (8 x 8 is the size of a normal chess board).
Output
The matrix that represents in which row and column the N Queens can be placed.
If the solution does not exist, it will return false.
1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0
In this output, the value 1 indicates the correct place for the queens.
The 0 denotes the blank spaces on the chess board.
Algorithms
isValid(board, row, col)
Begin if there is a queen at the left of current col, then return false if there is a queen at the left upper diagonal, then return false if there is a queen at the left lower diagonal, then return false; return true //otherwise it is valid place End
solveNQueen(board, col)
Begin if all columns are filled, then return true for each row of the board, do if isValid(board, i, col), then set queen at place (i, col) in the board if solveNQueen(board, col+1) = true, then return true otherwise remove queen from place (i, col) from board. done return false End
Example
#include<iostream> using namespace std; #define N 4 void printBoard(int board[N][N]) { for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) cout << board[i][j] << " "; cout << endl; } } bool isValid(int board[N][N], int row, int col) { for (int i = 0; i < col; i++) //check whether there is queen in the left or not if (board[row][i]) return false; for (int i=row, j=col; i>=0 && j>=0; i--, j--) if (board[i][j]) //check whether there is queen in the left upper diagonal or not return false; for (int i=row, j=col; j>=0 && i<N; i++, j--) if (board[i][j]) //check whether there is queen in the left lower diagonal or not return false; return true; } bool solveNQueen(int board[N][N], int col) { if (col >= N) //when N queens are placed successfully return true; for (int i = 0; i < N; i++) { //for each row, check placing of queen is possible or not if (isValid(board, i, col) ) { board[i][col] = 1; //if validate, place the queen at place (i, col) if ( solveNQueen(board, col + 1)) //Go for the other columns recursively return true; board[i][col] = 0; //When no place is vacant remove that queen } } return false; //when no possible order is found } bool checkSolution() { int board[N][N]; for(int i = 0; i<N; i++) for(int j = 0; j<N; j++) board[i][j] = 0; //set all elements to 0 if ( solveNQueen(board, 0) == false ) { //starting from 0th column cout << "Solution does not exist"; return false; } printBoard(board); return true; } int main() { checkSolution(); }
Output
1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0
- Related Articles
- N Queen Problem
- C++ Program to Solve the Dominating Set Problem
- Write a C# program to solve FizzBuzz problem
- C++ Program to Solve the Fractional Knapsack Problem
- C++ Program to Solve Knapsack Problem Using Dynamic Programming
- C++ Program to Solve the 0-1 Knapsack Problem
- C++ Program to Solve Travelling Salesman Problem for Unweighted Graph
- Python Program to solve Maximum Subarray Problem using Kadane’s Algorithm
- C++ program to Solve Tower of Hanoi Problem using Binary Value
- Python Program to solve Maximum Subarray Problem using Divide and Conquer
- C++ Program to Solve a Matching Problem for a Given Specific Case
- How we Can Solve this Problem
- 10 ways to solve the problem of computer illiteracy
- How to solve diamond problem using default methods in Java
- Mobile Numeric Keypad Problem\n

Advertisements