标签:
Combinations
问题:
Given two integers n and k, return all possible combinations of k numbers out of 1 ... n.
思路:
dfs + 回溯
我的代码:
学习之处:
void dfs() { for(所有情况) { 采用情况 dfs() 不采用情况 } }
标签:
原文地址:http://www.cnblogs.com/sunshisonghit/p/4323125.html