CMPC
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Queens Program

Go down

Queens Program Empty Queens Program

Post by Paul Mon Dec 07, 2009 10:04 pm

Code:

public class Queens
{
  public static void main(String[] args)
  {
      int[] a = new int[8];
      enumerate(a, 0);
  }

  /***********************************************************************
  * Try all permutations using backtracking
  ***********************************************************************/
  public static void enumerate(int[] q, int n)
  {
      int N = q.length;
      if (n == N)
      {
        printQueens(q);
      }
      else
      {
        for (int i = 0; i < N; i++)
        {
            q[n] = i;
            if (isConsistent(q, n))
            {
              enumerate(q, n+1);
            }
        }
      }
  }//end enumerate()

  /***********************************************************************
    * Return true if queen placement q[n] does not conflict with
    * other queens q[0] through q[n-1]
    ***********************************************************************/
  public static boolean isConsistent(int[] q, int n)
  {
      for (int i = 0; i < n; i++)
      {
        if (q[i] == q[n]) return false; // same column
        if ((q[i] - q[n]) == (n - i)) return false; // same major diagonal
        if ((q[n] - q[i]) == (n - i)) return false; // same minor diagonal
      }
      return true;
  }//end isConsistent()

  /***********************************************************************
    * Print out N-by-N placement of queens from permutation q in ASCII.
    ***********************************************************************/
  public static void printQueens(int[] q)
  {
      int N = q.length;
      for (int i = 0; i < N; i++) {
        for (int j = 0; j < N; j++) {
            if (q[i] == j) System.out.print("Q ");
            else System.out.print("* ");
        }
        System.out.println();
      }
      System.out.println();
  }//end printQueens()
}
Paul
Paul
Pickaxe

Posts : 611

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum