题目:

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,3 → 1,3,2
3,2,1 → 1,2,3
1,1,5 → 1,5,1

链接: http://leetcode.com/problems/next-permutation/

题解:

正常倒序应该是654321,假如652431,则2为inversion,并且next permutation应该为653124。

方法是从后向前找inversion,找到第一个inversion,如上例中,然后继续从后向前判断,假如从数组尾部到inversion元素 i 间有数字大于i, 则swap i 和这个数字,由于swap之后依然是倒序,所以我们reverse i 到 nums.length -1。

Time Complexity - O(n), Space Complexity - O(1)。

public class Solution {
public void nextPermutation(int[] nums) { // in place, so we consider swap
if(nums == null || nums.length == 0)
return; for(int i = nums.length - 2; i >= 0; i--) { //find first inversion from end e.g. - 654231
if(nums[i] < nums[i + 1]) {
for(int j = nums.length - 1; j >= i; j--) {
if(nums[j] > nums[i]) {
swap(nums, i, j); //swap inversion element and swap i, keep descendent order
reverse(nums, i + 1, nums.length - 1); // i + 1 to nums.length - 1 if possible
return;
}
}
}
} reverse(nums, 0, nums.length - 1); // no inversion
} private void swap(int[] nums, int i, int j) {
int tmp = nums[i];
nums[i] = nums[j];
nums[j] = tmp;
} private void reverse(int[] nums, int lo, int hi) {
while(lo < hi)
swap(nums, lo++, hi--);
}
}

题外话:

1-20-2016:

最近刷题的劲头减弱,身体也并不很好,由于压力总是大失眠。给Amazon和Microsoft投递出了简历都是石沉大海,好挫败,常常看地里New Graduate很容易就能拿到onsite或者video interview,只回答几个简单问题就能拿到offer,很羡慕。有时候甚至想辞职去读一个名校CS学位。

负能量比较重。

希望二刷时好好锻炼好思维, 沉住气,耐心按照计划执行。已经付出这么多时间和努力,接下来就是要坚持下去。付出 + 坚持,我相信一定会有回报。自己给自己鼓励吧。

二刷:

主要还是用之前的办法。先从数组后部向前部找第一个正序的数对,比如(2, 3),(2, 4)一类。找到这第一个正序队之后,我们要另外设置一个变量j,也是从数组后部向前部查找,找第一个值nums[j] > nums[i],比如(2, 3, 1)。 找到之后我们要swap(i, j),这样就能保持 i + 1到 nums.length - 1这些数字呈现一个降序的排列,然后我们再reverse(i + 1, nums.length - 1)就可以了。假如数组中没有正序的数对,那么我们根据题意要对整个数组进行逆序。

二刷时看了一下discuss区yavinci大神的代码,真是简洁又漂亮,非常羡慕。

Java:

Time Complexity - O(n), Space Complexity - O(1)

public class Solution {
public void nextPermutation(int[] nums) {
if (nums == null || nums.length == 0) {
return;
}
for (int i = nums.length - 2; i >= 0; i--) {
if (nums[i] < nums[i + 1]) {
for (int j = nums.length - 1; j > i; j--) {
if (nums[j] > nums[i]) {
swap(nums, i, j);
reverse(nums, i + 1, nums.length - 1);
return;
}
}
}
}
reverse(nums, 0, nums.length - 1);
} private void swap(int[] nums, int i, int j) {
int tmp = nums[i];
nums[i] = nums[j];
nums[j] = tmp;
} private void reverse(int[] nums, int i, int j) {
while (i < j) {
swap(nums, i++, j--);
}
}
}

三刷:

Java:

public class Solution {
public void nextPermutation(int[] nums) {
if (nums == null || nums.length < 2) return;
int len = nums.length;
for (int i = len - 2; i >= 0; i--) {
if (nums[i] < nums[i + 1]) {
for (int j = len - 1; j > i; j--) {
if (nums[j] > nums[i]) {
swap(nums, i, j);
reverse(nums, i + 1, len - 1);
return;
}
}
}
}
reverse(nums, 0, len - 1);
} private void swap(int[] nums, int i, int j) {
int tmp = nums[i];
nums[i] = nums[j];
nums[j] = tmp;
} private void reverse(int[] nums, int i, int j) {
while (i < j) swap(nums, i++, j--);
}
}

Reference:

https://leetcode.com/discuss/8472/share-my-o-n-time-solution

https://leetcode.com/discuss/38247/algorithm-wikipedia-implementation-permutations-permutations

https://leetcode.com/discuss/70881/easiest-java-solution

https://leetcode.com/discuss/47076/1-4-11-lines-c

31. Next Permutation的更多相关文章

  1. LeetCode - 31. Next Permutation

    31. Next Permutation Problem's Link ---------------------------------------------------------------- ...

  2. [Leetcode][Python]31: Next Permutation

    # -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com' 31: Next Permutationhttps://oj.leetcode ...

  3. [array] leetcode - 31. Next Permutation - Medium

    leetcode - 31. Next Permutation - Medium descrition Implement next permutation, which rearranges num ...

  4. LeetCode 31 Next Permutation / 60 Permutation Sequence [Permutation]

    LeetCode 31 Next Permutation / 60 Permutation Sequence [Permutation] <c++> LeetCode 31 Next Pe ...

  5. &lt;LeetCode OJ&gt; 31. Next Permutation

    31. Next Permutation Total Accepted: 54346 Total Submissions: 212155 Difficulty: Medium Implement ne ...

  6. 刷题31. Next Permutation

    一.题目说明 题目是31. Next Permutation,英文太差看不懂,翻译了一下.才知道是求字典顺序下的下一个排列,不允许使用额外空间.题目难度是Medium! 二.我的实现 首先要进一步理解 ...

  7. leetcode 31. Next Permutation (下一个排列,模拟,二分查找)

    题目链接 31. Next Permutation 题意 给定一段排列,输出其升序相邻的下一段排列.比如[1,3,2]的下一段排列为[2,1,3]. 注意排列呈环形,即[3,2,1]的下一段排列为[1 ...

  8. [LeetCode] 31. Next Permutation 下一个排列

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

  9. LeetCode 【31. Next Permutation】

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

随机推荐

  1. Boa练习程序2

    做一个地址簿的gui. #Boa:Frame:AddressEntry import wx def create(parent): return AddressEntry(parent) [wxID_ ...

  2. pyinstall 使用笔记

    1.下载pyinstaller 目前pyinstaller支持的python版本为2.3-2.7,可以到http://www.pyinstaller.org/官网下载. 2.安装 下载完成后,解压即可 ...

  3. SQLserver中的xp_cmdshell

    shell是用户与操作系统对话的一个接口,通过shell告诉操作系统让系统执行我们的指令 xp_cmdshell在sqlserver中默认是关闭的存在安全隐患. --打开xp_cmdshell ;;R ...

  4. 【js】 流式布局 页面

    <!DOCTYPE html><html><head> <meta content="text/html; charset=utf-8" ...

  5. 论坛类应用双Tableview翻页效果实现

    作为一名篮球爱好者,经常使用虎扑体育,虎扑体育应用最核心的部分就是其论坛功能,无论哪个版块,论坛都是其核心,而其论坛部分的实现又别具一格,它以两个tableview的形式翻页滚动显示,而不是常见的那种 ...

  6. SiteMesh3 介绍和使用

        Sitemesh是由一个基于Web页面布局.装饰及与现存Web应用整合的框架.它能帮助我们再由大量页面工程的项目中创建一致的页面布局和外观,如一 致的导航条.一致的banner.一致的版权等. ...

  7. mysql注入绕过的一些技巧

    虽然mysql + php的开发中可以使用pdo中,但是有些老久的程序没有使用,或其他原因 1.注释绕过 select/*comment*/user/*zzsdsdsf*/from mysql.use ...

  8. BZOJ 2763: [JLOI2011]飞行路线 spfa dp

    题目链接: http://www.lydsy.com/JudgeOnline/problem.php?id=2763 题解: d[x][kk]表示从s到x用了kk次免费机会的最少花费. 代码: #in ...

  9. 【BZOJ】【2440】【中山市选2011】完全平方数

    莫比乌斯函数/容斥原理 PoPoQQQ讲义引入例题= = 比较水……就是莫比乌斯函数的简单应用,也可理解为乱容斥一下…… 二分答案——>求1~x有多少个无平方因子的数Q(x). 引用一下PoPo ...

  10. 剑指offer--面试题17

    题目:合并两个排序的单向链表 自己所写代码如下: ListNode* MergeSortedLists(ListNode* pHead1, ListNode* pHead2) { if(pHead1 ...