码迷,mamicode.com
首页 > 其他好文 > 详细

全排列

时间:2018-11-20 23:06:00      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:.com   end   函数   排列   iostream   using   ima   color   ati   

可使用c++自带函数net_permutation()

#include<iostream>
#include<algorithm>
using namespace std;

int main()
{
    int a[3]={1,2,3};
    do
    {
        cout<<a[0]<<" "<<a[1]<<" "<<a[2]<<endl;
    }while(next_permutation(a,a+3));
} 

技术分享图片

 

全排列

标签:.com   end   函数   排列   iostream   using   ima   color   ati   

原文地址:https://www.cnblogs.com/KasenBob/p/9991730.html

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