设为首页 加入收藏

TOP

LeetCode――Next Permutation
2015-07-20 17:47:23 来源: 作者: 【 】 浏览:10
Tags:LeetCode Next Permutation

Implement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers.

If such arrangement is not possible, it must rearrange it as the lowest possible order (ie, sorted in ascending order).

The replacement must be in-place, do not allocate extra memory.

Here are some examples. Inputs are in the left-hand column and its corresponding outputs are in the right-hand column.
1,2,31,3,2
3,2,11,2,3
1,1,51,5,1

原题链接:https://oj.leetcode.com/problems/next-permutation/

题目:实现 下一个排列,其按字典序重新排列给定数组为比下一个排列更大的排列。

思路:下一个排列实际上比当前排列大且最接近的排列。具体做法是:在数组中从后往前,找到最后升序的地方,交换前后值,并将后面的原序逆转为升序。

	public void nextPermutation(int[] num) {
		int len = num.length, i = 0, j = 0;
		for (i = len - 2; i >= 0; i--) {
			if (num[i] >= num[i + 1])
				continue;
			for (j = len - 1; j > i; j--) {
				if (num[j] > num[i])
					break;
			}
			break;
		}
		if (i >= 0) {
			int temp = num[i];
			num[i] = num[j];
			num[j] = temp;
		}
		int end = len - 1;
		int start = i + 1;
		while (start < end) {
			int temp = num[start];
			num[start] = num[end];
			num[end] = temp;
			start++;
			end--;
		}
	}




】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇poj3468A Simple Problem with In.. 下一篇NYOJ-20岁生日

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容:

·哈希表 - 菜鸟教程 (2025-12-24 20:18:55)
·MySQL存储引擎InnoDB (2025-12-24 20:18:53)
·索引堆及其优化 - 菜 (2025-12-24 20:18:50)
·Shell 中各种括号的 (2025-12-24 19:50:39)
·Shell 变量 - 菜鸟教 (2025-12-24 19:50:37)