码迷,mamicode.com
首页 > 其他好文 > 详细

[LeetCode]77 Combinations

时间:2015-01-04 19:34:42      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:leetcode   permutations   np   

https://oj.leetcode.com/problems/combinations/

http://blog.csdn.net/linhuanmars/article/details/21260217


public class Solution {
    public List<List<Integer>> combine(int n, int k)
    {
        List<List<Integer>> results = new ArrayList<>();
        help(n, k, 0, new ArrayList<Integer>(), results);
        return results;
    }
    
    private void help(int n, int k, int start, List<Integer> items, List<List<Integer>> results)
    {
        if (items.size() == k)
        {
            results.add(new ArrayList<Integer>(items));
            return;
        }
        
        for (int i = start ; i < n ; i ++)
        {
            // Not using used
            // is because we don‘t care about order.
            // Only go forwards.
            //
            // If order matters, need to use used:boolean[]
            items.add(i + 1);
            
            help(n, k, i + 1, items, results);
            
            items.remove(items.size() - 1);
        }
    }
}


[LeetCode]77 Combinations

标签:leetcode   permutations   np   

原文地址:http://7371901.blog.51cto.com/7361901/1598998

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!