N-Queens
The n-queens puzzle is the problem of placing n queens on an n×n chessboard such that no two queens attack each other.
(N皇后的问题,求所有解)
Given an integer n, return all distinct solutions to the n-queens puzzle. Each solution contains a distinct board configuration of the n-queens’ placement, where ‘Q’ and ‘.’ both indicate a queen and an empty space respectively.
Example:
1. 回溯法
类似于这种解空间可以用树表示,且存在某种约束条件的问题可以用回溯法求解。具体实现过程如下:
1 | import copy |