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

Leetcode Permutations

时间:2015-04-15 13:24:58      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:

题目地址:https://leetcode.com/problems/permutations/

题目分析:很明显可以使用递归,先将起始位置与后面的每个数字交换位置,然后将起始位置往后移以为,以该起始位置为起点求排列,依次类推即可使用递归法。

题目解答:

import java.util.ArrayList;
import java.util.List;

public class Solution {
    public List<ArrayList<Integer>> permute(int[] num) {
        List<ArrayList<Integer>> ret = new ArrayList<ArrayList<Integer>>();
        if(num == null || num.length == 0){
            return ret;
        }
        
        permute(num,0,ret);
        
        return ret;
    }
    
    private void permute(int[] num,int start,List<ArrayList<Integer>> res){
        if(start == num.length - 1){
            ArrayList<Integer> temp = new ArrayList<Integer>();
            for(int i=0;i<num.length;i++){
                temp.add(num[i]);
            }
            res.add(temp);
            return;
        }
        
        for(int i=start;i<num.length;i++){
            int temp = num[start];
            num[start] = num[i];
            num[i] = temp;
            
            permute(num,start+1,res);
            
            temp = num[start];
            num[start] = num[i];
            num[i] = temp;
        }
    }
}

 

Leetcode Permutations

标签:

原文地址:http://www.cnblogs.com/xiongyuesen/p/4428042.html

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