文件名称:MY_DFS
介绍说明--下载内容均来自于网络,请自行研究使用
DFS is an uninformed search that progresses by expanding the first child node of the search tree that appears and thus going deeper and deeper until a goal node is found, or until it hits a node that has no children. Then the search backtracks, returning to the most recent node it hasn t finished exploring. In a non-recursive implementation, all freshly expanded nodes are added to a stack for exploration.
(系统自动生成,下载前可以参看下载内容)
下载文件列表
MY_DFS.C