美文网首页
77. Combinations

77. Combinations

作者: sharpeye_nba | 来源:发表于2016-11-02 21:06 被阅读0次

问题描述

Given two integers n and k, return all possible combinations of k numbers out of 1 ... n.
For example,If n = 4 and k = 2, a solution is:
[ [2,4], [3,4], [2,3], [1,2], [1,3], [1,4],]
简单来讲,就是输入参数 n和k , n>=k; 问从1-n中取k个数,有多少种可能,并把所有可能通过数组的方式存起来;

解题思路

分治法

将问题分解成两个子问题:

  1. (n-1, k) 不包含n问题;
  2. (n-1,k-1) 包含n问题

参考代码:
github

其他解法:

解法二

相关文章

网友评论

      本文标题:77. Combinations

      本文链接:https://www.haomeiwen.com/subject/ygqbuttx.html