forked from doocs/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.cs
31 lines (29 loc) · 881 Bytes
/
Solution.cs
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
using System.Collections.Generic;
using System.Linq;
public class Solution {
public IList<IList<int>> Permute(int[] nums) {
var results = new List<IList<int>>();
var temp = new List<int>();
var visited = new bool[nums.Length];
Search(nums, visited, temp, results);
return results;
}
private void Search(int[] nums, bool[] visited, IList<int> temp, IList<IList<int>> results)
{
int count = 0;
for (var i = 0; i < nums.Length; ++i)
{
if (visited[i]) continue;
++count;
temp.Add(nums[i]);
visited[i] = true;
Search(nums, visited, temp, results);
temp.RemoveAt(temp.Count - 1);
visited[i] = false;
}
if (count == 0 && temp.Any())
{
results.Add(new List<int>(temp));
}
}
}