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

全排列(STL)

时间:2018-09-22 00:53:45      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:char   har   printf   div   col   class   记录   输出   setw   

输入一个整数n,输出1~n的全排列(是不是很水)

在此记录stl做法

#include<bits/stdc++.h>
using namespace std;
char a[210];
int main(){
    int n;
    scanf("%d",&n);
    for(int i=0;i<n;i++)
    a[i]=i+1;
    for(int i=0;i<n;i++){
        cout<<setw(5)<<a[i];
    }
    printf("\n");
    while(next_permutation(a,a+n)){
        for(int i=0;i<n;i++){
            cout<<setw(5)<<a[i];
        }
        printf("\n");
    }
    return 0;
}

 

全排列(STL)

标签:char   har   printf   div   col   class   记录   输出   setw   

原文地址:https://www.cnblogs.com/crazily/p/9688959.html

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