POJ 1731

POJ 1731

题意

求全排列

思路

直接调用next_premutation函数。

#include 
#include 
#include 

using namespace std;

int main(int argc, char const *argv[])
{
    string str;
    while(cin>>str){
        sort(str.begin(),str.end());
        cout<

你可能感兴趣的:(POJ 1731)