The n-queens tag has no wiki summary.
9
votes
2answers
591 views
8-queen problem using Dynamic programming
I am quite confused with idea of implementing 8-queen problem using dynamic programming. It seems it is not possible at one end as for DP " if the problem was broken up into a series of subproblems ...
8
votes
4answers
1k views
8 queens problem using backtracking recurison
I've been working on the 8 queens problem but I got stuck. I don't want code. I would love guidance and directions in order to understand how to solve this problem myself using backtracking recursion.
...
4
votes
5answers
2k views
How to Solve N-Queens Problem in Scheme?
I'm stuck on the extended exercise 28.2 of How to Design Programs.
Here is the link to the question: http://www.htdp.org/2003-09-26/Book/curriculum-Z-H-35.html#node_chap_28
I used a vector of true ...
3
votes
1answer
262 views
All possible solution of the n-Queen's algorithm
When implementing an algorithm for all possible solution of an n-Queen problem, i found that the same solution is reached by many branches. Is there any good way to generate every unique solutions to ...
2
votes
3answers
148 views
“Put N Queens”, can it possible to run within acceptable time with N = 20?
The task is count how many solutions to put N queens in NxN board. I have tried to thought every possible case to improve the performace, but it take almost 50s to run with N = 15. Here's what I've ...
2
votes
4answers
737 views
8 queens problem
How can i go about implemting 8/4 queens problem?Should i use DFS/BFS,I think DFs will be better.
Can any one give some pseudocode/guidlines?
1
vote
3answers
255 views
Implementation question about classic n-Queens in Java
This is a homework question. I am writing a solution for classic n-Queens problem in Java. My program looks like this but it returns a collection of all legal queens placements instead of printing ...
1
vote
1answer
719 views
Solving Eight Queens problem with 2-d array: IndexOutOfBounds error
One of my homework assignments is to solve the Eight Queens problem using a two dimensional array to represent the board. I keep getting an index out of bounds error:8 in my "isUnderAttack" method at:
...
1
vote
1answer
587 views
Query about N- Queen solving?
I solved the N- Queen problem with the condition that there can only be one queen per column. So I place a queen in a square in first column, then move onto the next column and place a queen in a ...
1
vote
8answers
4k views
8-Queens algorithm example?
Anybody knows good/concise algorithm example for 8-queens?
I googled and did not find any good example.
0
votes
0answers
91 views
N Queens iterative dynamically allocated array C++
I was hoping someone could help me with this problem. I have a (incredibly basic) code that I had used for the 8 queens problem, and I'm trying to modify it so it will work with a dynamically ...
0
votes
0answers
40 views
Branch and bound keep vector in memory and when to write to disc
I am implementing the N queens problem in parallel, i.e. creating threads, but before I begin, I'd like to make this really eficient.
So my question is what would be the most efficient way to keep in ...
0
votes
2answers
414 views
Prolog Programming
I have made two programs in Prolog for the nqueens puzzle using hill climbing and beam search algorithms.
Unfortunately I do not have the experience to check whether the programs are correct and I am ...
0
votes
2answers
1k views
Matlab N-Queen Problem
main.m
counter = 1;
n = 8;
board = zeros(1,n);
back(0, board);
disp(counter);
sol.m
function value = sol(board)
for ( i = 1:(length(board)))
for ( j = (i+1): (length(board)-1))
if ...