1360. 卒的遍历-深度优先搜索-DFS

1360. 卒的遍历-深度优先搜索-DFS_第1张图片

代码:

#include
using namespace std;
int n,m;
int r[25][3];
int fx[3]={0,1,0};
int fy[3]={0,0,1};
int a;
void print(int k){
	a++;
	cout<";
	}
	cout<=1&&tx<=n&&ty>=1&&ty<=m){
			dfs(tx,ty,k+1);
		}
	}
}
int main(){
	cin>>n>>m;
	dfs(1,1,1);
	return 0;
} 

你可能感兴趣的:(深度优先,算法)