/* dfs 标记走过的路 额外temp记录走过的路 注意初始化和申请内存。 防止二维数组传参导致问题,均设为全局变量。 */ #include<stdio.h> #include<string.h> const int dx[4] = {1,-1,0,0}; const int dy[4] = {0,0,1,-1}; int **temp; int tempSize; int **nums; void dfs(int m...