Ask your own question, for FREE!
Computer Science 18 Online
OpenStudy (anonymous):

Need some alg ideas on how the 8 queen move. already have the board but i need to find the alg of the queen.

OpenStudy (anonymous):

this it all i got : public class EightQ { private Board b; private int dim; public EightQ(){ // default constructor this(8); } public EightQ(int d){ dim=d; b=new Board(dim); start(0); // start solving the puzzle by placing a queen in the 0th row } private void start(int r) { // this recursive method will use backtracking as necessary for (int c=0; c<dim;c++)// stpe through the columns looking for a legal move if (legal(r,c)) // then make the move { b.setElement(r, c, 1); // a 1 denotes the placement of a queen if (r<dim-1)// recursively call start for the next row { start(r+1); // backtrack by undoing the last move b.setElement(r, c, 0); } else { // solved the problem // print the solution and return } } private boolean legal(int r, int c){ } }

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Latest Questions
Mari103: How to pop out like a Jacc In the box
36 minutes ago 0 Replies 0 Medals
Breathless: Spooky witch but cute
7 hours ago 3 Replies 0 Medals
Arriyanalol: help
7 hours ago 10 Replies 2 Medals
Arriyanalol: @tinydinoUwU stop trying to find a argument u blad lil boy
1 day ago 5 Replies 4 Medals
Jaded012023: Please tell me what you all think of this song
10 hours ago 6 Replies 1 Medal
Arriyanalol: bro how
10 hours ago 2 Replies 3 Medals
Arriyanalol: cant wait for the new bluey movie in 2027
1 day ago 12 Replies 2 Medals
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!