next_permutation
参数介绍:
Next_permutation(place-begin,place_end)
第一个参数是,全排列的首地址,第二个是尾地址。
返回值:
当place这个东西(数组,字符串)存在下一个更大排列的时候返回true,(按照字符顺序)
例如
输入一个字符串,打印出该字符串中字符的所有排列。
你可以以任意顺序返回这个字符串数组,但里面不能有重复元素。
例题
输入一个字符串,打印出该字符串中字符的所有排列。
你可以以任意顺序返回这个字符串数组,但里面不能有重复元素。
class Solution {
public:
vector<string> permutation(string s) {
sort(s.begin(),s.end());
vector<string> ans;
do
{
ans.push_back(s);
}while(next_permutation(s.begin(),s.end()));
return ans;
}
};