- 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,3 → 1,3,2
3,2,1 → 1,2,3
1,1,5 → 1,5,1
my thoughts:
1. need to look up what is permutation.
my solution:
**********56 ms
class Solution(object):
def nextPermutation(self, nums):
"""
:type nums: List[int]
:rtype: void Do not return anything, modify nums in-place instead.
"""
i = len(nums)-1
while i > 0:
if nums[i-1]<nums[i]:
j = i
while j+1<len(nums) and nums[j+1]>nums[i-1]:
j += 1
nums[i-1], nums[j] = nums[j], nums[i-1]
break
i -= 1
l = i
r = len(nums)-1
while l<r:
nums[l], nums[r] = nums[r], nums[l]
l += 1
r -= 1
my comments:
from other ppl's solution:
1. N/A