摘要: ##### 【DFS】 ```c++ class Solution { public: int n; int path[10000]; bool st[10000]; void dfs(int u) { if(u==n){ for(int i=0;i<n;++i)cout<<path[i]<<" " 阅读全文
posted @ 2023-08-10 23:41 吉薇艾尔 阅读(20) 评论(0) 推荐(0)