Given a collection of distinct numbers, return all possible permutations. For example, [1,2,3] have the following permutations: [ [1,2,3], [1,3,2], [2,1,3], [2,3,1], [3,1,2], [3,2,1] ] 做了几个 backtrack 类的题目了, 对这个题还是没思路. 我目前的经验, backtrack 题目,要确定下面三个重要部件…