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?
feedback
|
|
Use a stack and backtracking, easiest way is via recursion. See these other SO posts: | |||||
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. | |||
|
feedback
|
|
See following Link: (Animated Prog of your problem) See Me | |||
|
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) | |||
|
feedback
|
|
I wrote a simple javascript program that solves the 8 queen problem. You can take a look here It uses backtracking | |||
|
feedback
|