You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
441 B
25 lines
441 B
2 years ago
|
// File: n_queens_test.go
|
||
|
// Created Time: 2023-05-14
|
||
|
// Author: Reanon (793584285@qq.com)
|
||
|
|
||
|
package chapter_backtracking
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestNQueens(t *testing.T) {
|
||
|
n := 4
|
||
|
res := nQueens(n)
|
||
|
|
||
|
fmt.Println("输入棋盘长宽为 ", n)
|
||
|
fmt.Println("皇后放置方案共有 ", len(res), " 种")
|
||
|
for _, state := range res {
|
||
|
fmt.Println("--------------------")
|
||
|
for _, row := range state {
|
||
|
fmt.Println(row)
|
||
|
}
|
||
|
}
|
||
|
}
|