[LeetCode]Next Permutation

题目描述:

LeetCode 31. 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

题目大意:

实现next permutation(下一个排列),重新排列数组中的数,使得到的新数组的字典序恰好大于原数组。

如果不存在这样的排列,就将原数组从小到大排序。

替换必须就地进行,不要分配额外的内存。

解题思路:

首先从右向左遍历数组,找到第一个相邻的左<右的数对,记右下标为x,则左下标为x - 1

若x > 0,则再次从右向左遍历数组,直到找到第一个大于nums[x - 1]的数字为止,记其下标为y,交换nums[x - 1], nums[y]

最后将nums[x]及其右边的元素就地逆置

Python代码:

class Solution(object):
    def nextPermutation(self, nums):
        """
        :type nums: List[int]
        :rtype: void Do not return anything, modify nums in-place instead.
        """
        size = len(nums)
        for x in range(size - 1, -1, -1):
            if nums[x - 1] < nums[x]:
                break
        if x > 0:
            for y in range(size - 1, -1, -1):
                if nums[y] > nums[x - 1]:
                    nums[x - 1], nums[y] = nums[y], nums[x - 1]
                    break
        for z in range((size - x) / 2):
            nums[x + z], nums[size - z - 1] = nums[size - z - 1], nums[x + z]

 

本文链接:http://bookshadow.com/weblog/2016/09/09/leetcode-next-permutation/
请尊重作者的劳动成果,转载请注明出处!书影博客保留对文章的所有权利。

如果您喜欢这篇博文,欢迎您捐赠书影博客: ,查看支付宝二维码

Pingbacks已关闭。

暂无评论

张贴您的评论