c# leetcode 784. 字母大小写全排列(回溯算法)

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

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

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

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

回溯:

 static IList<IList<char>> res = new List<IList<char>>();
        static void Main(string[] args)
        {
            List<string> res = new List<string>();
            LetterCasePermutation("1s1s");
        }
        public static IList<string> LetterCasePermutation(string S)
        { 
            List<string> res = new List<string>();
            Helper(S.ToCharArray(), 0, res);
            return res;
        }

        public static void Helper(char[] arr, int index, List<string> res)
        {
            if (index == arr.Length)
                res.Add(new String(arr));
            else
            {
                if (Char.IsDigit(arr[index]))
                    Helper(arr, index + 1, res);
                else
                {
                    arr[index] = Char.ToUpper(arr[index]);
                    Helper(arr, index + 1, res);

                    arr[index] = Char.ToLower(arr[index]);
                    Helper(arr, index + 1, res);
                }
            }
        }

要理解回溯算法的结构。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值