首页 > 其他 > 详细

[LeetCode]77 Combinations

时间:2015-01-04 19:33:23      阅读:234      评论:0      收藏:0      [点我收藏+]

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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!