题目描述
输入一个字符串,按字典序打印出该字符串中字符的所有排列。例如输入字符串abc,则打印出由字符a,b,c所能排列出来的所有字符串abc,acb,bac,bca,cab和cba。
思路
本题解空间就是一棵排列树,按照一定条件生成排列树。
并将其每一条路径压入vector中。
代码
class Solution {
vector<string> ver;
public:
/*
void swap(char &x, char &y) //include<algorithm>
{
char c = x;
x = y;
y = c;
}*/
bool same(string str) //相同不保存。。。
{
for(int i = 0; i < ver.size(); i++)
if(ver[i] == str)
return false;
return true;
}
void core(string str, int t)
{
if(t == str.size()-1 && same(str))
{
ver.push_back(str);
}
sort(str.begin() + t, str.end()); //很关键,否则排列出错!!! 也可以调用结束后暴力排序
for(int i = t; i < str.size(); i++)
{
swap(str[i], str[t]);
core(str, t+1);
swap(str[i], str[t]);
}
}
vector<string> Permutation(string str)
{
sort(str.begin(),str.end());
core(str, 0);
return ver;
}
};