This commit is contained in:
youngyangyang04
2021-01-15 16:59:58 +08:00
parent b633d44fa7
commit 5a5e24f3b8
2 changed files with 27 additions and 24 deletions

View File

@ -283,6 +283,8 @@
* [动态规划:不同路径](https://mp.weixin.qq.com/s/MGgGIt4QCpFMROE9X9he_A)
* [动态规划:不同路径还不够,要有障碍!](https://mp.weixin.qq.com/s/lhqF0O4le9-wvalptOVOww)
* [动态规划:整数拆分,你要怎么拆?](https://mp.weixin.qq.com/s/cVbyHrsWH_Rfzlj-ESr01A)
* [动态规划:不同的二叉搜索树](https://mp.weixin.qq.com/s/8VE8pDrGxTf8NEVYBDwONw)
(持续更新中....

View File

@ -240,6 +240,7 @@ void backtracking(参数) {
## 并查集
```
int n = 1005; // 更具题意而定
int father[1005];