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?

link|improve this question

67% accept rate
Tastes like homework. – gabuzo Feb 3 '11 at 6:43
Yeah, assignment ftw! The best way to go around homework is to actually do it yourself. – Elijah Saounkine Feb 3 '11 at 7:07
1  
BFS could be interesting if you want to find all solutions for the queens problem. DFS is the right choice if you want to find any solution as quick as possible. – Andreas_D Feb 3 '11 at 7:07
feedback

5 Answers

up vote 2 down vote accepted

Use a stack and backtracking, easiest way is via recursion.

See these other SO posts:

Dumb 8 Queens problem in C++

link|improve this answer
yes i know, but can you provide some gudelines, pseudocode? – akshay Feb 3 '11 at 6:40
there's an implementation there, what do you need it when you got a working solution? – Elijah Saounkine Feb 3 '11 at 7:04
feedback

DFS is indeed the solution, which should be implemented as backtracking.

See here for description of the solution.

If you don't understand anything description from the link, please ask.

All the best.

link|improve this answer
feedback

See following Link: (Animated Prog of your problem) See Me

link|improve this answer
feedback

My solution have 2 pre-defined logics, there is only one queen at row, and there is only one queen at column. There is an one-dimensional array that length is 8. All array value set one of the 0-7, but all values used exactly one time (permutation of values that 0-7) arr[0]=5 value means queen at column 6 at first row arr[1]=3 value means queen at column 4 at second row, just control cross violation values on array check for, there is no need for check line or row violation. Permutation and cross violation functions all you need, (C++ STL has permutation functions, that just need to cross violation functions)

link|improve this answer
feedback

I wrote a simple javascript program that solves the 8 queen problem. You can take a look here

It uses backtracking

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.