深度優先搜索1.0

void dfs ( int step ){

    判斷邊界
    嘗試每一種可能 for ( i = 1; i <= n; ++i )
    {
        繼續下一步 dfs ( step + 1 );
    }
    返回
}
相關文章
相關標籤/搜索