• LeetCode


    题目:

    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],
    ]
    

    思路:

    递归

    package recursion;
    
    import java.util.ArrayList;
    import java.util.List;
    
    public class Combinations {
    
        public List<List<Integer>> combine(int n, int k) {
            List<List<Integer>> res = new ArrayList<List<Integer>>();
            List<Integer> record = new ArrayList<Integer>();
            generateRecord(res, record, 1, n, k);
            return res;
        }
        
        private void generateRecord(List<List<Integer>> res, List<Integer> record, int start, int end, int k) {
            if (k == 0) {
                res.add(record);
                return;
            }
            
            for (int i = start; i <= end - k + 1; ++i) { 
                List<Integer> newRecord = new ArrayList<Integer>(record);
                newRecord.add(i);
                generateRecord(res, newRecord, i + 1, end, k - 1);
            }
        }
        
        public static void main(String[] args) {
            // TODO Auto-generated method stub
            Combinations c = new Combinations();
            List<List<Integer>> res = c.combine(4, 2);
            for (List<Integer> l : res) {
                for (int i : l) 
                    System.out.print(i + "	");
                System.out.println();
            }
        }
    
    }
  • 相关阅读:
    c++链表实现学生成绩管理系统(简易版)
    IOS动画讲解
    栈的实现
    Masonry的使用
    二叉树详解-2
    二叉树详解-1
    CoreData的使用-2
    NSPredicate 详解
    CoreData的使用-1
    IOS常用手势用法
  • 原文地址:https://www.cnblogs.com/null00/p/5094656.html
Copyright © 2020-2023  润新知