Anybody knows good/concise algorithm example for 8-queens? I googled and did not find any good example.
feedback
|
|
Here's a simple Java implementation of the naive recursive algorithm; it should be instructive.
Note that
This Once you're comfortable that this recursive tuple generator works, simply uncomment those lines, and you will get a simple, naive, but working, NQueens solver. With
Each line is a solution to the 5-queens problem. The
I will leave it as an exercise to understand why Happy learning. | |||
|
feedback
|
|
The point of the 8-queens problem is often just to illustrate the power of search combined with pruning. You can pretty much do a brute force search of the search space, but eliminate any partial solution when it violates the constraints of the solution (i.e. one queen checks another). Just using this pruning, 8-queens is easily solvable. If you want more efficient solutions that would be useful for e.g. 100 or 1000 queens, that's a different story and you can look at the stuff in wikipedia. But for 8-queens, brute force and pruning are enough. (i.e. do depth first search of the search space, eliminating any intermediate node that includes a queen in check). | |||
|
feedback
|
|
to place queen on row r:
(r,c) is safe if, for each row [r+1 .. 8]:
| ||||
|
feedback
|
|
In EWD316, Dijkstra derives a solution to the Eight Queens problem rather formally. Try it, you might like it! | |||
|
feedback
|
|
From Wikipedia:
| |||
|
feedback
|
|
| |||
|
feedback
|
|
Here is a simple C# Solution I think it works
| |||
|
feedback
|
| ||||
|
feedback
|