深度优先搜索1.0 2024年6月7日 223次阅读 void dfs ( int step ){ 判断边界 尝试每一种可能 for ( i = 1; i <= n; ++i ) { 继续下一步 dfs ( step + 1 ); } 返回 } < 上一篇 下一篇 >