码迷,mamicode.com
首页 > 编程语言 > 详细

C++ 全排列

时间:2019-07-23 00:18:46      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:out   www   参考   ext   tps   pac   使用   margin   get   

 

按顺序输出n位数的全排列,n位数为1-n。如n=3,则输出123,132,213,231,312,321

#include <bits/stdc++.h>
using namespace std;
int main()
{
    int n;
    cin >> n;
    int num[10];
    for(int i = 1;i <= n;++i)
        num[i-1] = i;
    do{
        for(int j = 0;j < n;j++)
            cout << num[j];
        cout << endl;
    }while(next_permutation(num, num+n));
}

参考文章:https://www.cnblogs.com/aiguona/p/7304945.html

1)next_permutation:求下一个排列组合 

a.函数模板:next_permutation(arr, arr+size);
b.参数说明:
  arr: 数组名
  size:数组元素个数
c.函数功能: 返回值为bool类型,当当前序列不存在下一个排列时,函数返回false,否则返回true,排列好的数在数组中存储

d.注意:在使用前需要对欲排列数组按升序排序,否则只能找出该序列之后的全排列数。
    比如,如果数组num初始化为2,3,1,那么输出就变为了:{2 3 1} {3 1 2} {3 2 1}

2)prev_permutation:求上一个排列组合

a.函数模板:prev_permutation(arr, arr+size);
b.参数说明:
  arr: 数组名
  size:数组元素个数
c.函数功能: 返回值为bool类型,当当前序列不存在上一个排列时,函数返回false,否则返回true
d.注意:在使用前需要对欲排列数组按降序排序,否则只能找出该序列之后的全排列数。

 

C++ 全排列

标签:out   www   参考   ext   tps   pac   使用   margin   get   

原文地址:https://www.cnblogs.com/zcl843264327/p/11229097.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!