This commit is contained in:
programmercarl
2023-10-04 17:15:42 +08:00
parent 617346a35e
commit 48692ef223
6 changed files with 140 additions and 3 deletions

View File

@ -31,7 +31,7 @@ for (int i = startIndex; i < candidates.size() && sum + candidates[i] <= target;
在[回溯算法:求组合总和(二)](https://programmercarl.com/0039.组合总和.html)第一个树形结构没有画出startIndex的作用**这里这里纠正一下,准确的树形结构如图所示:**
![39.组合总和](https://code-thinking-1253855093.file.myqcloud.com/pics/20201123202227835.png)
![39.组合总和](https://code-thinking-1253855093.file.myqcloud.com/pics/20201223170730367.png)
## 周二