Python描述 LeetCode 47. 全排列 II
Posted 亓官劼
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python描述 LeetCode 47. 全排列 II相关的知识,希望对你有一定的参考价值。
Python描述 LeetCode 47. 全排列 II
大家好,我是亓官劼(qí guān jié ),在【亓官劼】公众号、CSDN、GitHub、B站等平台分享一些技术博文,主要包括前端开发、python后端开发、小程序开发、数据结构与算法、docker、Linux常用运维、NLP等相关技术博文,时光荏苒,未来可期,加油~
如果喜欢博主的文章可以关注博主的个人公众号【亓官劼】(qí guān jié),里面的文章更全更新更快。如果有需要找博主的话可以在公众号后台留言,我会尽快回复消息.
本文原创为【亓官劼】(qí guān jié ),请大家支持原创,部分平台一直在恶意盗取博主的文章!!! 全部文章请关注微信公众号【亓官劼】。
题目
给定一个可包含重复数字的序列 nums
,按任意顺序 返回所有不重复的全排列。
示例 1:
输入:nums = [1,1,2]
输出:
[[1,1,2],
[1,2,1],
[2,1,1]]
示例 2:
输入:nums = [1,2,3]
输出:[[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2],[3,2,1]]
提示:
1 <= nums.length <= 8
-10 <= nums[i] <= 10
Python描述
46题加个去重
class Solution:
def permuteUnique(self, nums: List[int]) -> List[List[int]]:
def nextPermutation(nums: List[int]) -> None:
"""
Do not return anything, modify nums in-place instead.
"""
n = len(nums)
if n == 1:
return nums
# 找第一个升序
idx = n - 2
while idx >= 0:
if nums[idx] < nums[idx + 1]:
break
idx -= 1
# 找第一个比升序前小的数字位置
idy = n - 1
while idy >= 0:
if nums[idy] > nums[idx]:
break
idy -= 1
if idx == -1:
idy = n-1
nums[idx], nums[idy] = nums[idy], nums[idx]
# 逆序nums[idx+1:]
i = idx + 1
j = n - 1
while i < j:
nums[i],nums[j] = nums[j],nums[i]
i += 1
j -= 1
cnt = 1
n = len(nums)
while n:
cnt *=n
n -= 1
res = set()
for i in range(cnt):
nextPermutation(nums)
res.add(tuple(nums))
return [list(item) for item in res]
以上是关于Python描述 LeetCode 47. 全排列 II的主要内容,如果未能解决你的问题,请参考以下文章