1415: The-k-th-Lexicographical-String-of-All-Happy-Strings-of-Length-n
Medium
A good algorithm speaks for itself.
Jokes, you just recurse through all the possible strings, and
increment a count
variable everytime you reach a
valid happy
string Eventually, once
you reach the k
th happy
string, you can
just break out of the recursion and return the string
directly.
Code:
class Solution {
public:
bool recursion (int &count, int n, int k, string& happy) {
if (happy.size() == n) {
if (++count == k) {
return true;
} else {
return false;
}
}
for (int i = 0; i < 3; ++i) {
if (happy.size() > 0 && happy.back() == 'a'+i) continue;
+= 'a'+i;
happy if (recursion(count, n, k, happy)) {
return true;
}
.pop_back();
happy}
return false;
}
(int n, int k) {
string getHappyString= "";
string happy int count = 0;
(count, n, k, happy);
recursionreturn happy;
}
};