Leetcode 77. Combinations

在这里插入图片描述
方法1: 我自己的方法,我觉得应该也能算dp。就是找规律,找C(n,k)和C(n,k-1)的关系。这道题目的时间空间复杂我就不分析了,脑瓜疼。然后这个方法可以有一个小优化,就是C(n,k) = C(n,n-k)有很大的关系,所以每当k > n/2是,我们就可以套用这个公式减轻运算量。

class Solution {
    public List<List<Integer>> combine(int n, int k) {
        List<List<Integer>> res = new ArrayList<>();
        
        if(k == 0){
            res.add(new ArrayList<>());
            return res;
        }
        if(k == 1){
            for(int i = 1; i <= n; i++){
                List<Integer> curr = new ArrayList<>();
                curr.add(i);
                res.add(curr);
            }
            return res;
        }
        
        if(k > n / 2){
            List<List<Integer>> list = combine(n, n-k);
            for(List<Integer> l : list){
                List<Integer> hh = new ArrayList<>();
                Set<Integer> set = new HashSet<>(l);
                for(int i = 1; i <= n; i++){
                    if(!set.contains(i)) hh.add(i);
                }
                res.add(hh);
            }
            return res;
        }
       
        
        List<List<Integer>> list = combine(n, k-1);
        for(List<Integer> l : list){
            int last = l.get(l.size()-1);
            List<Integer> temp = new ArrayList<>(l);
            for(int i = last + 1; i <= n; i++){
                temp.add(i);
                res.add(temp);
                temp = new ArrayList<>(l);
            }
        }
        return res;
    }
}

方法2: dp。这是discussion部分一个比较好的答案。附上链接

public class Solution {
    public List<List<Integer>> combine(int n, int k) {
        if (k == n || k == 0) {
            List<Integer> row = new LinkedList<>();
            for (int i = 1; i <= k; ++i) {
                row.add(i);
            }
            return new LinkedList<>(Arrays.asList(row));
        }
        List<List<Integer>> result = this.combine(n - 1, k - 1);
        result.forEach(e -> e.add(n));
        result.addAll(this.combine(n - 1, k));
        return result;
    }
}

方法3: lc官方解答1,backtracking。这仿佛和78题一样,我怀疑这个backtracking是一个公式,对于这类题型来说。

class Solution {
  List<List<Integer>> output = new LinkedList();
  int n;
  int k;

  public void backtrack(int first, LinkedList<Integer> curr) {
    // if the combination is done
    if (curr.size() == k)
      output.add(new LinkedList(curr));

    for (int i = first; i < n + 1; ++i) {
      // add i into the current combination
      curr.add(i);
      // use next integers to complete the combination
      backtrack(i + 1, curr);
      // backtrack
      curr.removeLast();
    }
  }

  public List<List<Integer>> combine(int n, int k) {
    this.n = n;
    this.k = k;
    backtrack(1, new LinkedList<Integer>());
    return output;
  }
}

总结:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值