当前位置:   article > 正文

回溯算法求解N皇后问题 java语言_n皇后问题回溯法java

n皇后问题回溯法java

1 是什么N皇后问题?

八皇后问题,是一个古老而著名的问题.该问题是国际西洋棋棋手马克斯·贝瑟尔于1848年提出:在8×8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法?

 

 

2 什么是回溯法?

  回溯法(back tracking)(探索与回溯法)是一种选优搜索法,又称为试探法,按选优条件向前搜索,以达到目标。 但当探索到某一步时,发现原先选择并不优或达不到目标,就退回一步重新选择,这种走不通就退回再走的技术为回溯法,而满足回溯条件的某个状态的点称为"回溯点"。

代码:

  1. public class NQueens {
  2. public static boolean isValid(int[] record, int i, int j) {
  3. for (int k = 0; k < i; k++) {
  4. if (j == record[k] || Math.abs(record[k] - j) == Math.abs(i - k)) {
  5. return false;
  6. }
  7. }
  8. return true;
  9. }
  10. public static int num2(int n) {
  11. if (n < 1 || n > 32) {
  12. return 0;
  13. }
  14. int upperLim = n == 32 ? -1 : (1 << n) - 1;
  15. return process2(upperLim, 0, 0, 0);
  16. }
  17. public static int process2(int upperLim, int colLim, int leftDiaLim,
  18. int rightDiaLim) {
  19. if (colLim == upperLim) {
  20. return 1;
  21. }
  22. int pos = 0;
  23. int mostRightOne = 0;
  24. pos = upperLim & (~(colLim | leftDiaLim | rightDiaLim));
  25. int res = 0;
  26. while (pos != 0) {
  27. mostRightOne = pos & (~pos + 1);
  28. pos = pos - mostRightOne;
  29. res += process2(upperLim, colLim | mostRightOne,
  30. (leftDiaLim | mostRightOne) << 1,
  31. (rightDiaLim | mostRightOne) >>> 1);
  32. }
  33. return res;
  34. }
  35. public static void main(String[] args) {
  36. int n = 8;
  37. System.out.println("n=8");
  38. long start = System.currentTimeMillis();
  39. System.out.println(num2(n));
  40. long end = System.currentTimeMillis();
  41. System.out.println("cost time: " + (end - start) + "ms");
  42. }
  43. }

结果:

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/633324
推荐阅读
相关标签
  

闽ICP备14008679号