Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added N-Queens implementation in C++. #29

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
101 changes: 101 additions & 0 deletions Puzzles/N-Queens.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
/*
An implementation of the Algorithm solving the N-Queens problem.

The N Queen is the problem of placing N chess queens on an N×N chessboard so that no two queens attack each other. For example, following is a solution for 4 Queen problem.
The problem can be solved using backtracking.
**/
#include <iostream>
using namespace std;

bool isSafe(int board[][10],int i,int j,int n){
// check row and columns
for(int k=0;k<n;k++){
if(board[k][j] || board[i][k]){
return false;
}
}
// Check for diagnols
int k=i;
int l=j;

// Check the right diagonal
while(k>=0 && l<n){
if(board[k][l]){
return false;
}
k--;
l++;
}
// Check the left diagonal
k=i;
l=j;
while(k>=0 && l>=0){
if(board[k][l]){
return false;
}
k--;
l--;
}

// If queen is not here then return that
// the location is safe to put the queen
// i.e return true;
return true;

}


bool NQueen(int board[][10],int i,int n){
// base case
if(i==n){
// Print the board
for(int k=0;k<n;k++){
for(int l=0;l<n;l++){
cout<<board[k][l]<<" ";
}
cout<<endl;
}
cout<<endl;
return false;
}

// Recursive case
for(int j=0;j<n;j++){
if(isSafe(board,i,j,n)){
// If it is safe to put then place the Queen
board[i][j]=1;
// Store result of recursive solving of teh subproblem in this variable
bool remainingQueensPlaced = NQueen(board,i+1,n);
// Checking if the other queens (after the current one could be placed)
if(remainingQueensPlaced){
return true;
}
// Remove the placed Queen
board[i][j]=0;
}

}
return false;
}


int main(){
int board[10][10];
int n;
// Take input for the number of Queens
// cin>>n;
// Put n = 4 for testing purposes.
/*
For n=4 this will be the one of the possible outputs:
{ 0, 1, 0, 0}
{ 0, 0, 0, 1}
{ 1, 0, 0, 0}
{ 0, 0, 1, 0}
It is to be noted that for a given value of n, there can be
multiple possible configurations. This implementation prints all
possible implementations, separating each by a blank line.
**/
n = 4;
NQueen(board,0,n);
return 0;
}
47 changes: 47 additions & 0 deletions Puzzles/Tower Of Hanoi.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
/**
This code solves the problem of the Tower Of Hanoi.
Here is the problem:
Tower of Hanoi is a mathematical puzzle where we have three rods and n disks. The objective of the puzzle is to move the entire stack to another rod, obeying the following simple rules:
1) Only one disk can be moved at a time.
2) Each move consists of taking the upper disk from one of the stacks and placing it on top of another stack i.e. a disk can only be moved if it is the uppermost disk on a stack.
3) No disk may be placed on top of a smaller disk.

Example problem:
n = 2 disks.
Let rod 1 = 'A', rod 2 = 'B', rod 3 = 'C'.

Step 1 : Shift first disk from 'A' to 'B'.
Step 2 : Shift second disk from 'A' to 'C'.
Step 3 : Shift first disk from 'B' to 'C'.

The pattern here is :
Shift 'n-1' disks from 'A' to 'B'.
Shift last disk from 'A' to 'C'.
Shift 'n-1' disks from 'B' to 'C'.
*/

#include <iostream>
using namespace std;

void toh(int n,char source,char helper,char dest){
if(n==0){
return;
}

// Recursive solution
toh(n-1,source,dest,helper);
cout<<"Take disk "<<n<<" from "<<source<<" to "<<dest<<endl;
toh(n-1,helper,source,dest);

}

// Driver function
int main(){
int n;
// cin>>n;
// For a test case, assume n = 2.
n = 2;
toh(n,'A','B','C');

return 0;
}