leetcode 52 N皇后问题 II
Posted Joel_Wang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 52 N皇后问题 II相关的知识,希望对你有一定的参考价值。
51的简化版,省去根据排列话棋盘的工作,直接计数,代码:
class Solution { public: int totalNQueens(int n) { int res=0; vector<int> pos(n,-1); dfs(n,0,pos,res); return res; } void dfs(int n,int row,vector<int>& pos,int &res){ if(row==n){ res++;return; } for(int col=0;col<n;col++){ if(isValid(row,col,pos)){ pos[row]=col; dfs(n,row+1,pos,res); pos[row]=-1; } } } bool isValid(int row,int col,vector<int>&pos){ for(int i=0;i<row;i++){ if(col==pos[i] || abs(col-pos[i])==abs(row-i)) return false; } return true; } };
以上是关于leetcode 52 N皇后问题 II的主要内容,如果未能解决你的问题,请参考以下文章