update 0077.组合优化:添加复杂度分析

This commit is contained in:
Yuhao Ju 2023-04-27 15:37:21 +08:00 committed by GitHub
parent 7851e51c73
commit e533cb9cd4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -130,6 +130,10 @@ public:
}
};
```
* 时间复杂度: O(n * 2^n)
* 空间复杂度: O(n)
# 总结