mirror of
https://github.com/halfrost/LeetCode-Go.git
synced 2025-07-04 16:12:47 +08:00
36 lines
812 B
Go
36 lines
812 B
Go
package leetcode
|
|
|
|
import "sort"
|
|
|
|
func permuteUnique(nums []int) [][]int {
|
|
if len(nums) == 0 {
|
|
return [][]int{}
|
|
}
|
|
used, p, res := make([]bool, len(nums)), []int{}, [][]int{}
|
|
sort.Ints(nums) // 这里是去重的关键逻辑
|
|
generatePermutation47(nums, 0, p, &res, &used)
|
|
return res
|
|
}
|
|
|
|
func generatePermutation47(nums []int, index int, p []int, res *[][]int, used *[]bool) {
|
|
if index == len(nums) {
|
|
temp := make([]int, len(p))
|
|
copy(temp, p)
|
|
*res = append(*res, temp)
|
|
return
|
|
}
|
|
for i := 0; i < len(nums); i++ {
|
|
if !(*used)[i] {
|
|
if i > 0 && nums[i] == nums[i-1] && !(*used)[i-1] { // 这里是去重的关键逻辑
|
|
continue
|
|
}
|
|
(*used)[i] = true
|
|
p = append(p, nums[i])
|
|
generatePermutation47(nums, index+1, p, res, used)
|
|
p = p[:len(p)-1]
|
|
(*used)[i] = false
|
|
}
|
|
}
|
|
return
|
|
}
|