网站首页 站内搜索

搜索结果

查询Tags标签: 题锦,共有 1条记录
  • 常用算法题锦——DFS

    Hanjo#include <bits/stdc++.h> using namespace std; int n, m, a, b; int st[20][20]; int ans = 0;void dfs(int x, int y, int a, int b) {if (a < 0) return;if (b < 0) return;if (y == m + 1) return dfs(x + 1, 1, a, b);if (x == n && y == …

    2021/6/18 9:27:12 人评论 次浏览
扫一扫关注最新编程教程