500. Keyboard Row

题意就是判断一个单词是否在同一行。

我的方法是:首先判断这个单词的第一个字母在哪个位置,然后判断后边的字母是不是和第一个字母的位置相同,不同的话就赋值0。可能我写的比较麻烦,因为看上去代码好多,有待于进一步改进把。

java代码如下:(运行时间3ms)

 public String[] findWords(String[] words) {
        String line = "QWERTYUIOPASDFGHJKLZXCVBNM";//顺序是按照第一行/第二行/第三行字母来的
        int length = words.length;
        int[] judge = new int[length];//用于判断单词在哪行
        for(int i=0;i<length;i++){
            String s = words[i];
            s = s.toUpperCase();//将单词都变成大写

            //判断第一个字母的位置
            char s1 = s.charAt(0);
            int index = line.indexOf(s1);
            if(index<10)
                judge[i]= 1;
            else if(index<19)
                judge[i] = 2;
            else
                judge[i] = 3;

           //判断其他字母位置与第一个字母位置是否相同,不同就把judge[i]赋值为0;
            for(int j = 1;j<s.length();j++){
                char sj = s.charAt(j);
                int indexj = line.indexOf(sj);
                int j_judge = 0;
                if(indexj<10)
                    j_judge = 1;
                else if(indexj<19)
                    j_judge = 2;
                else
                    j_judge = 3;
                if(j_judge!=judge[i])
                    judge[i] = 0;


            }


        }

       //判断在同一行的单词的个数,用于下一步新建一个新数组初始化
        int sum = 0;
        for(int i=0;i<length;i++){
            if(judge[i]!=0)
                sum++;
        }
        String[] new_words = new String[sum];
        int new_i = 0;

        //将同一行的单词提出来赋值给new_words数组,即可返回
        for(int i=0;i<length;i++){
            if(judge[i]!=0){
                new_words[new_i]=words[i];
                new_i++;
            }
        }
        return new_words;
    }

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
检测鼠标事件 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、付费专栏及课程。

余额充值