1. 每日一题
给定一个不含重复数字的数组 nums
,返回其 所有可能的全排列 。你可以 按任意顺序 返回答案。
输入: nums = [1,2,3] 输出: [[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2],[3,2,1]]
void backtrack(std::vector<std::vector<int> > &res, std::vector<int> &output, int first, int len) { // 所有数都填完了 if (first == len - 1 ) { res.push_back(output); return; } for (int i = first; i < len; ++i) { // 动态维护数组 std::swap(output[i], output[first]); // 继续递归填下一个数 backtrack(res, output, first + 1, len); // 撤销操作 std::swap(output[i], output[first]); } } std::vector<std::vector<int> > permute(std::vector<int> &nums) { std::vector<std::vector<int> > res; backtrack(res, nums, 0, (int)nums.size()); return res; }
版权声明:
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若内容造成侵权、违法违规、事实不符,请将相关资料发送至xkadmin@xkablog.com进行投诉反馈,一经查实,立即处理!
转载请注明出处,原文链接:https://www.xkablog.com/cjjbc/699.html