500. Keyboard Row

本文介绍了一种算法,用于从给定的单词列表中找出所有能够仅使用美式键盘的一行字母键输入的单词。通过将每个字母映射到特定的行号,该算法可以高效地筛选出符合条件的单词。

原题

Given a List of words, return the words that can be typed using letters of alphabet on only one row’s of American keyboard like the image below.

American keyboard
这里写图片描述

Example 1:
Input: [“Hello”, “Alaska”, “Dad”, “Peace”]
Output: [“Alaska”, “Dad”]

代码实现

  public string[] FindWords(string[] words)
        {
            int[] hash = new int[123];
            char[] chs1 = {'q', 'w', 'e', 'r', 't', 'y', 'u', 'i', 'o', 'p'};
            foreach (var ch in chs1)
            {
                hash[Convert.ToInt32(ch)] = 1; //q
                hash[Convert.ToInt32(ch)-32] = 1; //Q
            }
            chs1 = new[] {'a', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l'};
            foreach (var ch in chs1)
            {
                hash[Convert.ToInt32(ch)] = 2;
                hash[Convert.ToInt32(ch) - 32] = 2;
            }
            chs1 = new[] {'z', 'x', 'c', 'v', 'b', 'n', 'm'};
            foreach (var ch in chs1)
            {
                hash[Convert.ToInt32(ch)] = 3;
                hash[Convert.ToInt32(ch) - 32] = 3;
            }
            List<string> rtn = new List<string>();
            foreach (var word in words)
            {
                if(string.IsNullOrEmpty(word)) continue;
                int row = hash[word[0]];
                bool allflag = true;
                foreach (var ch in word)
                {
                    if (hash[ch] != row)
                    {
                        allflag = false;
                        break;
                    }
                }
                if(allflag==true) rtn.Add(word);
            }
            return rtn.ToArray();
        }

leetcode-solution库

leetcode算法题目解决方案每天更新在github库中,欢迎感兴趣的朋友加入进来,也欢迎star,或pull request。https://github.com/jackzhenguo/leetcode-csharp

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值