标签:dfs

HDOJ-1010基础的迷宫问题(DFS)

搜索 dfs c语言 Problem Description The doggie found a bone in an ancient maze, which fascinated him a lot. However, when he picked it up, the maze began to shake, and the doggie ……

N皇后问题的两种算法速度比较

dfs 搜索 算法 c语言 8皇后 Problem Description 在N*N的方格棋盘放置了N个皇后,使得它们不相互攻击(即任意2个皇后不允许处在同一排,同一列,也不允许处在与棋盘边框成45角的斜线上。 你的任务是,对于给定的N,求出有多少种合法的放置方法。 对于这个经典的问题,通常有一下两种算法。我看一本算法书上说第二种效率要比第一种高……