[leetcode-in-go] 0046-Permutations

Given a collection of distinct integers, return all possible permutations.

Example:

Input: [1,2,3]
Output:
[
[1,2,3],
[1,3,2],
[2,1,3],
[2,3,1],
[3,1,2],
[3,2,1]
]

解题思路
  • 递归(cur + remain, *result)
  • 特别注意 append 的坑,不要直接 append remain 的两个子切片,这会损坏原 remain 切片
  • 正确的做法是新建切片,然后向新切片 append(切记切记)
func core(cur, remain []int, result *[][]int) {
	if len(remain) == 0 {
		cur_t := make([]int, len(cur)) // 非常重要
		copy(cur_t, cur)
		*result = append(*result, cur_t)
		return
	}
	for i, v := range remain {
		cur_t := append(cur, v)
		remain_t := make([]int, len(remain[:i])) // 非常重要
		copy(remain_t, remain[:i])
		remain_t = append(remain_t, remain[i+1:]...)
		core(cur_t, remain_t, result)
	}
}

func permute(nums []int) [][]int {
	result := [][]int{}
	core([]int{}, nums, &result)
	return result
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值