Lintcode16 Permutations II solution 题解

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Lintcode16 Permutations II solution 题解相关的知识,希望对你有一定的参考价值。

【题目描述】

Given a list of numbers with duplicate number in it. Find all unique permutations.

给出一个具有重复数字的列表,找出列表所有不同的排列。

【题目链接】

http://www.lintcode.com/en/problem/permutations-ii/

【题目解析】

跟 Permutations的解法一样,就是要考虑“去重”。先对数组进行排序,这样在DFS的时候,可以先判断前面的一个数是否和自己相等,相等的时候则前面的数必须使用了,自己才能使用,这样就不会产生重复的排列了。

与Permitations的code相比,只加了3行,Line 8,23,24。

【答案链接】

http://www.jiuzhang.com/solutions/permutations-ii/


以上是关于Lintcode16 Permutations II solution 题解的主要内容,如果未能解决你的问题,请参考以下文章

lintcode16- Permutations II- medium

[Lintcode]15. Permutations/[Leetcode]46. Permutations

LintCode : Permutations II

lintcode-medium-Permutations II

lintcode-medium-Permutations

Lintcode15 Permutations solution 题解