Write a recursive function for generating all permutations of an input string. Return them as a set.
Don't worry about time or space complexity—if we wanted efficiency we'd write an iterative version.
To start, assume every character in the input string is unique.
Your function can have loops—it just needs to also be recursive.
Make sure you have a base case! Otherwise your function may never terminate!
Let's break the problem into subproblems. How could we re-phrase the problem of getting all permutations for "cats" in terms of a smaller but similar subproblem?
Let's make our subproblem be getting all permutations for all characters except the last one. If we had all permutations for "cat," how could we use that to generate all permutations for "cats"?
We could put the "s" in each possible position for each possible permutation of "cat"!
These are our permutations of "cat":
cat
cta
atc
act
tac
tca
For each of them, we add "s" in each possible position. So for "cat":
cat
scat
csat
cast
cats
And for "cta":
cta
scta
csta
ctsa
ctas
And so on.
Now that we can break the problem into subproblems, we just need a base case and we have a recursive algorithm!
If we're making all permutations for "cat," we take all permutations for "ca" and then put "t" in each possible position in each of those permutations. We use this approach recursively:
unordered_set<string> getPermutations(const string& inputString)
{
unordered_set<string> permutations;
// base case
if (inputString.length() <= 1) {
permutations.insert(inputString);
return permutations;
}
string allCharsExceptLast = inputString.substr(0, inputString.length() - 1);
char lastChar = inputString[inputString.length() - 1];
// recursive call: get all possible permutations for all chars except last
const auto permutationsOfAllCharsExceptLast = getPermutations(allCharsExceptLast);
// put the last char in all possible positions for each of the above permutations
for (const string& permutationOfAllCharsExceptLast : permutationsOfAllCharsExceptLast) {
for (size_t position = 0; position <= allCharsExceptLast.length(); ++position) {
string permutation = permutationOfAllCharsExceptLast.substr(0, position)
+ lastChar + permutationOfAllCharsExceptLast.substr(position);
permutations.insert(permutation);
}
}
return permutations;
}
How does the problem change if the string can have duplicate characters?
What if we wanted to bring down the time and/or space costs?
This is one where playing with a sample input is huge. Sometimes it helps to think of algorithm design as a two-part process: first figure out how you would solve the problem "by hand," as though the input was a stack of paper on a desk in front of you. Then translate that process into code.
Actually, we don't support password-based login. Never have. Just the OAuth methods above. Why?
It's easy and quick. No "reset password" flow. No password to forget.
It lets us avoid storing passwords that hackers could access and use to try to log into our users' email or bank accounts.
It makes it harder for one person to share a paid Interview Cake account with multiple people.
“I was really hoping to get my money back from you for not getting an offer from a company, but I ended up getting an offer from Google after practicing with your platform. Thanks for the help!!
—
Adam