forked from andavid/leetcode-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
46.permutations.java
55 lines (53 loc) · 1.11 KB
/
46.permutations.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
* @lc app=leetcode id=46 lang=java
*
* [46] Permutations
*
* https://leetcode.com/problems/permutations/description/
*
* algorithms
* Medium (53.45%)
* Likes: 2213
* Dislikes: 67
* Total Accepted: 406.6K
* Total Submissions: 721.9K
* Testcase Example: '[1,2,3]'
*
* 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]
* ]
*
*
*/
class Solution {
public List<List<Integer>> permute(int[] nums) {
List<List<Integer>> answer = new ArrayList<>();
List<Integer> track = new ArrayList<>();
backtrace(nums, track, answer);
return answer;
}
public void backtrace(int[] nums, List<Integer> track, List<List<Integer>> answer) {
if (track.size() == nums.length) {
answer.add(new ArrayList<Integer>(track));
} else {
for (int num : nums) {
if (track.contains(num)) continue;
track.add(num);
backtrace(nums, track, answer);
track.remove(track.size() - 1);
}
}
}
}