Given a collection of 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], and [3,2,1]. 这道题是求全排列问题,给的输入数组没有重复项,这跟之前的那道Combinations 组合项 和类似,解法基本相同,但是不同点在于那道不同的数字顺序只…