摘要:
大佬的解析DFS #include<iostream> using namespace std; const int N = 10; int n; int path[N]; bool st[N]; void dfs(int u) { if (u == n) { for (int i = 0; i < 阅读全文
posted @ 2024-07-28 21:06
某朝
阅读(30)
评论(0)
推荐(0)
摘要:
简单用法 阅读全文
posted @ 2024-07-28 15:28
某朝
阅读(9)
评论(0)
推荐(0)