in reply to Trying to solve N-Queens
The brute force method works (put a queen at (1,1) or top left, and place the next queens in the next column, and so forth) but it's a little inefficient. My approach would start off by placing a queen at (1,1), but the placement of the next queen would be in the next available location that is out of reach of all of the queens placed on the board so far. More queens would be placed in this manner until the number of uncovered places reached zero (solution!) or until we run out of queens.
--t. alex
but my friends call me T.
p.s. And I'm not sure why your second matrix shows
Wouldn't the matrices be symmetric about the diagonal?Q 0 0 rather than Q 0 0 1 0 1 0 0 1 1 1 0 0 1 0
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Trying to solve N-Queens
by Anonymous Monk on Sep 09, 2002 at 10:39 UTC |