【重点】【DFS】46.全排列
2023-12-18 18:10:14
法1:DFS,最佳解法
class Solution {
public List<List<Integer>> permute(int[] nums) {
List<List<Integer>> res = new ArrayList<>();
if (nums.length == 0) {
return res;
}
dfs(nums, 0, res);
return res;
}
public void dfs(int[] nums, int curInx, List<List<Integer>> res) {
if (curInx == nums.length - 1) {
List<Integer> tmp = new ArrayList<>();
for (int i = 0; i < nums.length; ++i) {
tmp.add(nums[i]);
}
res.add(tmp);
return;
}
for (int i = curInx; i < nums.length; ++i) {
swap(nums, curInx, i);
dfs(nums, curInx + 1, res);
swap(nums, curInx, i);
}
}
public void swap(int[] array, int i, int j) {
int tmp = array[i];
array[i] = array[j];
array[j] = tmp;
}
}
文章来源:https://blog.csdn.net/Allenlzcoder/article/details/135066182
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!