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.

这里写图片描述

Example 1:

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


给定一系列单词,需要我们来查看组成单个单词的所有字母是否在键盘的同一行中,如果是的话则将其添加到返回结果中。


可以建立三个字符串,分别就是键盘上的三行字母,然后开始遍历所有的单词,判断这个单词的所有字母是否都存在与某一行中,需要注意的是大小写的转换。

class Solution {
public:
    vector<string> findWords(vector<string>& words) {
        vector<string> ans;
        vector<string> rows = {"qwertyuiop","asdfghjkl","zxcvbnm"};
        for(string word : words) {
            bool row1 = true;// 用来标记在不在这一行中
            bool row2 = true;
            bool row3 = true;
            for(char ch : word) {
                if(row1) {
                    if(rows[0].find(tolower(ch)) == -1)
                        row1 = false;
                }
                if(row2) {
                    if(rows[1].find(tolower(ch)) == -1)
                        row2 = false;
                }
                if(row3) {
                    if(rows[2].find(tolower(ch)) == -1)
                        row3 = false;
                }
            }

            if(row1 || row2 || row3) {
                ans.push_back(word);
            }
        }
        return ans;
    }
};

也可以将三行的按键字母存放在hash表中,某一行的字母对应一个数字,比如第一行的字母用1里表示,第二行用2,第三行用3。然后看单词的第一个字母是属于哪一行的,然后对比该单词的其他字母是否与第一行相同。

比如单词:apple,第一个字母在hash表中的对应的字母是2,但是p在hash表中对应的是1,所以不相同,也就能够说明这个单词的所有字母不在同一行中。

class Solution {
public:
    vector<string> findWords(vector<string>& words) {
        // 用来转换为小写
        class uTol{
          public:
            char easytolow(char in){
              if(in <= 'Z' && in >= 'A'){
                  return in - ('Z' - 'z');
              }
              return in;
            }
        };
        // 用一个map来标记行数
        unordered_map<char, int> style;

        for(auto letter:"qwertyuiop"){
            style[letter] = 1;
        }
        for(auto letter:"asdfghjkl"){
            style[letter] = 2;
        }
        for(auto letter:"zxcvbnm"){
            style[letter] = 3;
        }

        uTol ul;
        vector<string> result;

        for(auto word: words){
            // 检查第一个元素是什么类型的
            int category = style[ul.easytolow(word[0])];
            bool isAllsame = true;
            // 检查该单词的所有字母
            for(auto letter:word){
                // 如果和第一个单词不一个类型
                if(style[ul.easytolow(letter)] != category){
                    isAllsame = false;
                    break;
                }
            }
            if(isAllsame){
                result.push_back(word);
            }
        }
        return result;
    }
};
检测鼠标事件 def mouse_event(self, event, x, y, flags, param): if event == cv2.EVENT_LBUTTONUP and x > 550 and y < 50: def open_login_window(my_window, on_entry_click): loginwindow = LoginWindow(on_entry_click) loginwindow.transient(my_window) loginwindow.wait_visibility() loginwindow.grab_set() def quit_window(my_window): # self.camera_process.terminate() my_window.destroy() # 虚拟键盘 def on_entry_click(self, event, entry): if self.keyboard_window: self.keyboard_window.destroy() keyboard_window = tk.Toplevel(self) keyboard_window.title("虚拟键盘") keyboard_window.geometry("610x140") keyboard_window.resizable(False, False) button_list = ['1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '<-', 'q', 'w', 'e', 'r', 't', 'y', 'u', 'i', 'o', 'p', 'a', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'z', 'x', 'c', 'v', 'b', 'n', 'm'] row = 0 col = 0 for button_text in button_list: button = tk.Button(keyboard_window, text=button_text, width=3) if button_text != '<-': button.config(command=lambda char=button_text: entry.insert(tk.END, char)) else: button.config( command=lambda char=button_text: entry.delete(len(entry.get()) - 1, tk.END)) button.grid(row=row, column=col) col += 1 if col > 10: row += 1 col = 0 keyboard_window.deiconify() self.keyboard_window = keyboard_window # 登录界面 my_window = tk.Tk() my_window.title("登录") my_window.geometry("300x200") # 计算窗口位置,让其出现在屏幕中间 screen_width = my_window.winfo_screenwidth() screen_height = my_window.winfo_screenheight() x = (screen_width - 300) // 2 y = (screen_height - 200) // 2 my_window.geometry("+{}+{}".format(x, y)) my_window.wm_attributes("-topmost", True) login_button = tk.Button(my_window, text="登录", font=('Arial', 12), width=10, height=1, command=lambda: open_login_window(my_window, on_entry_click)) login_button.pack(side='left', expand=True) exitbutton = tk.Button(my_window, text="退出", font=('Arial', 12), width=10, height=1, command=lambda: [quit_window(my_window)]) exitbutton.pack(side='left', expand=True) my_window.mainloop() if event == cv2.EVENT_LBUTTONUP and x < 50 and y > 1000: cv2.destroyAllWindows() 在此基础上请实现让tk界面不会出现重影 用中文回答
最新发布
06-02
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值