C#力扣算法:17. 电话号码的字母组合

题目描述:

给定一个仅包含数字 2-9 的字符串,返回所有它能表示的字母组合。答案可以按 任意顺序 返回。

给出数字到字母的映射如下(与电话按键相同)。注意 1 不对应任何字母。

C#力扣算法:17. 电话号码的字母组合_第1张图片

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

案例:

C#力扣算法:17. 电话号码的字母组合_第2张图片

解决方案:

代码:

public IList LetterCombinations(string str) {
    List strs = new List();
    if(str == "" || str == "1") return strs;

    Dictionary dic = new Dictionary();
    dic.Add('2', "abc");
    dic.Add('3', "def");
    dic.Add('4', "ghi");
    dic.Add('5', "jkl");
    dic.Add('6', "mno");
    dic.Add('7', "pqrs");
    dic.Add('8', "tuv");
    dic.Add('9', "wxyz");
    
    for (int i = 0; i < str.Length; i++)
    {
        if (str[i] == '1') continue;

        if (strs.Count <= 0)
        {
            for (int zfc = 0; zfc < dic[str[i]].Length; zfc++)
            {
                strs.Add(dic[str[i]].ToString()[zfc].ToString());
            }
        }
        else
        {
            strs = StrMatch(strs, dic[str[i]]);
        }
    }

    return strs;
}

public List StrMatch(List strs,string str)
{
    List arr = new List();
    for (int i = 0; i < strs.Count; i++)
    {
        for (int j = 0; j < str.Length; j++)
        {
            arr.Add(strs[i] + str[j]);
        }
    }
    return arr;
}

提交结果:(太感动了,一次过)

C#力扣算法:17. 电话号码的字母组合_第3张图片

你可能感兴趣的:(C#,算法,算法,leetcode,数据结构,c#,开发语言)