其他分享
首页 > 其他分享> > 784. 字母大小写全排列(DFS回溯)

784. 字母大小写全排列(DFS回溯)

作者:互联网

784. 字母大小写全排列

给定一个字符串 s ,通过将字符串 s 中的每个字母转变大小写,我们可以获得一个新的字符串。

返回 所有可能得到的字符串集合 。以 任意顺序 返回输出。

 

示例 1:

输入:s = "a1b2"
输出:["a1b2", "a1B2", "A1b2", "A1B2"]

示例 2:

输入: s = "3z4"
输出: ["3z4","3Z4"]

 

提示:

 1 class Solution {
 2 public:
 3     vector<string> ans;
 4     void dfs(string S, int index) {
 5         if (index == S.size()) {
 6             ans.push_back(S);
 7             return;
 8         }
 9         dfs(S, index + 1); // 遍历下一个字符
10         // 字符如果是大小写字母
11         if ((S[index] >= 'a' && S[index] <= 'z') || (S[index] >= 'A' && S[index] <= 'Z')) {
12             S[index] ^= 1 << 5; // 大小写转换
13             dfs(S, index + 1);
14             S[index] ^= 1 << 5; // 回溯
15         }
16     }
17     vector<string> letterCasePermutation(string S) {
18         dfs(S, 0);
19         return ans;
20     }
21 };

 

标签:784,index,示例,dfs,大小写,DFS,ans,字符串
来源: https://www.cnblogs.com/MGFangel/p/16339457.html