欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

全排列——next_permutation

程序员文章站 2022-03-22 19:06:21
...
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int main()
{
    string s = "123";
    do
    {
        cout << s << endl;
    }while(next_permutation(s.begin(),s.end()));
}
相关标签: 全排列