mirror of
https://github.com/halfrost/LeetCode-Go.git
synced 2025-07-04 16:12:47 +08:00
30 lines
627 B
Go
30 lines
627 B
Go
package leetcode
|
|
|
|
func permute(nums []int) [][]int {
|
|
if len(nums) == 0 {
|
|
return [][]int{}
|
|
}
|
|
used, p, res := make([]bool, len(nums)), []int{}, [][]int{}
|
|
generatePermutation(nums, 0, p, &res, &used)
|
|
return res
|
|
}
|
|
|
|
func generatePermutation(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] {
|
|
(*used)[i] = true
|
|
p = append(p, nums[i])
|
|
generatePermutation(nums, index+1, p, res, used)
|
|
p = p[:len(p)-1]
|
|
(*used)[i] = false
|
|
}
|
|
}
|
|
return
|
|
}
|