77. Combinations
problem description
Given two integers n and k, return all possible combinations of k numbers out of 1 ... n.
Example:
algorithm thought
组合问题,典型的回溯法例题,使用回溯法解决
code
algorithm analysis
组合问题需要放置k个值,每个值只能比后面的小,不能重复。时间复杂度不是太好分析,有很多种情况。但是回溯法时间复杂度一般都是O(2^n)
Last updated