摘要: ##### 【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)
摘要: #####limit--查询结果限制返回n行 ```SQL select * from table_name limit n; #n代表行数 ``` #####group by--查询结果去重 ```SQL select id from table_name group by id; ``` ### 阅读全文
posted @ 2023-06-10 00:07 吉薇艾尔 阅读(25) 评论(0) 推荐(0)