-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy path31NextPermutation.py
36 lines (32 loc) · 1.14 KB
/
31NextPermutation.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
class Solution:
def nextPermutation(self, nums):
"""
:type nums: List[int]
:rtype: void Do not return anything, modify nums in-place instead.
"""
numr = sorted(nums, reverse=True)
# such arrangement is not possible
if numr == nums:
nums.reverse()
print(nums)
elif len(nums) != 0 and numr != nums:
j = len(nums) - 1
while j > 0:
i = j - 1
if nums[j] > nums[i]:
# look backward for min num which greater than nums[i]
k = j
swap = j
while k < len(nums):
if nums[i] < nums[k]:
if nums[k] < nums[j]:
swap = k
k = k + 1
temp = nums[i]
nums[i] = nums[swap]
nums[swap] = temp
# sorted in ascending order
nums[i + 1:] = sorted(nums[i + 1:])
break
else:
j = j - 1