码迷,mamicode.com
首页 > 其他好文 > 详细

[CC150] 八皇后问题

时间:2014-06-10 10:36:29      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   java   

Write an algorithm to print all ways of arranging eight queens on an 8*8 chess board so that none of them share the same row, column or diagonal.

思路:

本质上是DFS, 从第一行开始一行行地放棋子,每次放棋子之前根据当前的棋盘检查一下约束。

Code (from book):

bubuko.com,布布扣
    void placeQueen(int row, Integer[] columns, ArrayList<Integer[]> result){
        if(row == GRID_SIZE){
            result.add(columns.clone());
            return;
        }
        
        for(int col = 0; col < GRID_SIZE; ++col){
            if(checkValid(row, col, columns)){
                columns[row] = col;
                placeQueen(row + 1, columns, result);
            }
        }
    }
    
    // No need to check the same row because the program
    // proceeds one row at a time
    boolean checkValid(int row, int column, Integer[] columns){
        for(int i = 0; i < row; ++i){
            int j = columns[i];
            
            // check the same column
            if(column == j){
                return false;
            }
            
            // check same diagonal
            if(Math.abs(row - i) == Math.abs(column - j)){
                return false;
            }
        }
        return true;
    }
bubuko.com,布布扣

 

[CC150] 八皇后问题,布布扣,bubuko.com

[CC150] 八皇后问题

标签:c   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/Antech/p/3779167.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!