当前位置:网站首页 > C++编程 > 正文

c 全排列函数_C++排列组合

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; } 
到此这篇c 全排列函数_C++排列组合的文章就介绍到这了,更多相关内容请继续浏览下面的相关推荐文章,希望大家都能在编程的领域有一番成就!

版权声明


相关文章:

  • aide c++插件_c++编程app2024-11-21 12:00:08
  • c++格式化读取_cout输出科学计数法2024-11-21 12:00:08
  • cpp 泛型_泛型数组2024-11-21 12:00:08
  • linux c++网络编程_系统软件linux2024-11-21 12:00:08
  • C++学习笔记(二、C++基本概念)2024-11-21 12:00:08
  • c++的题目练手_c++练题比较好的软件2024-11-21 12:00:08
  • c++类和对象_c++ string类的常用方法2024-11-21 12:00:08
  • 推荐几款C++初学者用的编程软件2024-11-21 12:00:08
  • mac cpp编译_linux编译安装2024-11-21 12:00:08
  • C++学习笔记(二、C++基本概念)2024-11-21 12:00:08
  • 全屏图片