#include <iostream> #include <algorithm> #include <string> using namespace std; int main() { string s("12435"); sort(s.begin(), s.end()); cout << s << endl; //next_permutation的使用 while (next_permutation(s.begin(), s.end())) cout << s << endl; cin.get(); return 0; }
时间: 2024-09-23 15:19:11