鱼C论坛

 找回密码
 立即注册
查看: 982|回复: 0

[技术交流] C++刷leetcode(784. 字母大小写全排列)【深度优先搜索】

[复制链接]
发表于 2020-4-17 14:32:24 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 糖逗 于 2020-5-8 17:58 编辑

题目描述:
给定一个字符串S,通过将字符串S中的每个字母转变大小写,我们可以获得一个新的字符串。返回所有可能得到的字符串集合。

示例:
输入: S = "a1b2"
输出: ["a1b2", "a1B2", "A1b2", "A1B2"]

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

输入: S = "12345"
输出: ["12345"]
注意:

S 的长度不超过12。
S 仅由数字和字母组成。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/letter-case-permutation
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。



#include <iostream>
#include<string>
#include <vector>
using namespace std;

 void dfs(string S, vector<string>& res, string temp, int start){
    if(temp.size() == S.size()) res.push_back(temp);
    if(S[start] >= '0' && S[start] <= '9'){
        temp += S[start];
        dfs(S, res, temp, start+1);
        temp.erase(temp.end()-1);
    }
    int store[2] = {0, 32};
    if((S[start] >='A' && S[start] <='Z') || (S[start] >='a' && S[start] <='z'))
    for(int i = 0; i < 2; i++){
        int temp2 = islower(S[start]) ? -1:1;
        temp += char(S[start] +  store[i] * temp2);
        dfs(S, res, temp, start+1);
        temp.erase(temp.end()-1);
    }
}
vector<string> letterCasePermutation(string S) {
    vector<string> res;
    dfs(S, res, "", 0);
    return res;
}



int main(void){
        string input;
        cin >> input;
        vector<string> res = letterCasePermutation(input);
        for(int i = 0; i < res.size(); i++){
                for(int j = 0; j < res[0].size(); j++){
                        cout << res[i][j] << " "; 
                } 
                cout << endl;
        }

        return 0;
}


注意事项:
1.解题思路如图1。

图1

图1

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-15 06:26

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表