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

031 Next Permutation

时间:2015-07-09 07:24:10      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:

又是一道纯数学的题, 纸上认真研究下就好。 这道题需要Inplace, 所以写了个辅助的reverse.

class Solution:
    # @param {integer[]} nums
    # @return {void} Do not return anything, modify nums in-place instead.
    def nextPermutation(self, nums):
        length = len(nums)
        l = length - 1
        while l >= 1 and nums[l] <= nums[l-1]:
            l -= 1
        if l == 0:
            self.reverse(nums, 0, length - 1)
        else:
            j = length - 1
            while nums[j] <= nums[l-1]:
                j -= 1
            nums[l-1], nums[j] = nums[j], nums[l-1]
            self.reverse(nums, l, length - 1)
        print(nums)

    def reverse(self, nums, i, j):
        while i < j:
            nums[i], nums[j] = nums[j], nums[i]
            i += 1
            j -= 1

 

031 Next Permutation

标签:

原文地址:http://www.cnblogs.com/dapanshe/p/4631855.html

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