首页 > 代码库 > leetcode46
leetcode46
public class Solution { public IList<IList<int>> Permute(int[] nums) { IList<IList<int>> result = new List<IList<int>>(); permute(result, nums, 0); return result; } private void permute(IList<IList<int>> result, int[] array, int start) { if (start >= array.Length) { List<int> current = new List<int>(); foreach (int a in array) { current.Add(a); } result.Add(current); } else { for (int i = start; i < array.Length; i++) { swap(array, start, i); permute(result, array, start + 1); swap(array, start, i); } } } private void swap(int[] array, int i, int j) { int temp = array[i]; array[i] = array[j]; array[j] = temp; } }
https://leetcode.com/problems/permutations/#/solutions
leetcode46
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。