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

LeetCode 45 Permutations

时间:2014-08-28 14:52:49      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:java   leetcode   

Given a collection of numbers, return all possible permutations.

For example,
[1,2,3] have the following permutations:
[1,2,3][1,3,2][2,1,3][2,3,1][3,1,2], and [3,2,1].

思路:使用字典序法,思路见http://blog.csdn.net/mlweixiao/article/details/38893507,这样不管有没有重复的数字都可以处理。
public class Solution {
	private void nextPermutation(int[] num) {
		int i;
		int cur = -1;
		int temp;
		// find the last increase sequence
		for (i = num.length - 1; i >= 1; i--) {
			if (num[i] > num[i - 1]) {
				cur = i - 1;
				break;
			}
		}

		// if the increase sequence exists,
		// swap the cur and the last one(bigger than it)
		if (cur != -1) {
			for (i = num.length - 1; i > cur; i--) {
				if (num[i] > num[cur]) {
					temp = num[cur];
					num[cur] = num[i];
					num[i] = temp;
					break;
				}
			}
		}

		for (i = cur + 1; 2 * i <= cur + num.length - 1; i++) {
			temp = num[i];
			num[i] = num[num.length - i + cur];
			num[num.length - i + cur] = temp;
		}
	}

	@SuppressWarnings({ "rawtypes", "unchecked" })
	public List<List<Integer>> permute(int[] num) {

		Arrays.sort(num);
		int[] temparray = new int[num.length];
		System.arraycopy(num, 0, temparray, 0, num.length);

		ArrayList<List<Integer>> result = new ArrayList<List<Integer>>();

		for (;;) {
			List list = new ArrayList<Integer>();
			// 注意不能使用list.addAll(Arrays.asList(num));
			// 也不能使用Collection.addAll(list ,num);
			// Arrays.asList() 返回java.util.Arrays$ArrayList,
			// 而不是ArrayList。Arrays$ArrayList和ArrayList都是继承AbstractList,
			//remove,add等method在AbstractList中是默认throw
			// UnsupportedOperationException而且不作任何操作。
			//
			for (int i = 0; i < num.length; i++) {
				list.add(num[i]);
			}
			result.add(list);
			nextPermutation(num);
			if (Arrays.equals(num, temparray))
				break;
		}
		return result;
	}
}


LeetCode 45 Permutations

标签:java   leetcode   

原文地址:http://blog.csdn.net/mlweixiao/article/details/38897499

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