题解 | #N皇后问题#

N皇后问题

http://www.nowcoder.com/practice/c76408782512486d91eea181107293b6

import java.util.*;


public class Solution {
    /**
     * 
     * @param n int整型 the n
     * @return int整型
     */
    static int count = 0;
    public static boolean place(int[] arr,int s){
        for(int i=0;i<s;i++){
            if(arr[i] == arr[s] || Math.abs(s-i) == Math.abs(arr[s]-arr[i])){
                return false;
            }
        }
        return true;
    } 
    public static int GET(int[] queue,int i,int n){
        if(i >= n){
            count++;
        }else{
        for(int j=0;j<n;j++){
            queue[i] = j;
            if(place(queue,i)){
                GET(queue,i+1,n);
            }
        }
      }
        return count;
    }
    public int Nqueen (int n) {
        // write code here
        int[] queue = new int[n];
        return GET(queue,0,n);
    }
}
全部评论

相关推荐

宇算唯航:目测实缴资本不超100W的小公司
点赞 评论 收藏
分享
05-19 19:57
蚌埠学院 Python
2237:Gpa70不算高,建议只写排名,个人技能不在多而在精,缩到8条以内。项目留一个含金量高的,减少间距弄到一页,硕士简历也就一页,本科不要写很多
实习,投递多份简历没人回...
点赞 评论 收藏
分享
强大的马里奥:不太可能,我校计算机硕士就业率99%
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务