剑指offer 字符串的排列
- 题目描述
输入一个字符串,按字典序打印出该字符串中字符的所有排列。例如输入字符串abc,则打印出由字符a,b,c所能排列出来的所有字符串abc,acb,bac,bca,cab和cba。 结果请按字母顺序输出。
** 输入描述: **
输入一个字符串,长度不超过9(可能有字符重复),字符只包括大小写字母。
- 题目解析
思路很简单,首先排序字符串,然后利用algorithm库中的next_permutation方法来进行全排列。
class Solution {
public:
vector<string> Permutation(string str) {
vector<string> ret;
int size = str.size();
if (size == 0)
return ret;
sort(str.begin(), str.end());
do{
ret.push_back(str);
} while (next_permutation(str.begin(), str.end()));
return ret;
}
};
当然,不用库函数我们也得会写是不~
void dfs(string str, vector<string> &ret, int s, int e){
if (s == e)
ret.push_back(str);
for (int i = s; i < e; i++){
swap(str[i], str[s]);
dfs(str, ret, s + 1, e);
swap(str[i], str[s]);
}
}