【每日一题Day105】LC2325解密消息 | 哈希表

简介: 思路:使用哈希表记录每个字母对应的译文,然后结果为以message中的每个字母为key的value值的拼接

解密消息【LC2325】


You are given the strings key and message, which represent a cipher key and a secret message, respectively. The steps to decode message are as follows:


1.Use the first appearance of all 26 lowercase English letters in key as the order of the substitution table.


2.Align the substitution table with the regular English alphabet.


3.Each letter in message is then substituted using the table.


4.Spaces ' ' are transformed to themselves.


  • For example, given key = "**hap**p**y** **bo**y" (actual key would have at least one instance of each letter in the alphabet), we have the partial substitution table of ('h' -> 'a', 'a' -> 'b', 'p' -> 'c', 'y' -> 'd', 'b' -> 'e', 'o' -> 'f').


Return the decoded message.


到学校了,晕高铁地铁真是太惨了

可能要请两天假,滑雪一切顺利~


  • 思路:使用哈希表记录每个字母对应的译文,然后结果为以message中的每个字母为key的value值的拼接


  • 实现


class Solution {
    public String decodeMessage(String key, String message) {
        Map<Character,Character> map = new HashMap<>();
        map.put(' ',' ');
        int idx = 0;
        for (int i = 0; i < key.length(); i++){
            if (idx == 26) break;
            char c = key.charAt(i);
            if (!map.containsKey(c)){
                map.put(c, (char)('a' + idx++));
            }
        }
        StringBuilder res = new StringBuilder();
        for (int i = 0; i < message.length(); i++){
            res.append(map.get(message.charAt(i)));
        }
        return res.toString();
    }
}


。复杂度


  • 时间复杂度:O ( n + m ),n、m为字符串长度,
  • 空间复杂度:O(C),C为字符集大小,本题中为27
目录
相关文章
|
6月前
【每日一题Day176】LC2404出现最频繁的偶数元素 | 哈希表
【每日一题Day176】LC2404出现最频繁的偶数元素 | 哈希表
51 0
【每日一题Day176】LC2404出现最频繁的偶数元素 | 哈希表
|
6月前
|
存储
【每日一题Day113】LC1797设计一个验证系统 | 哈希表
【每日一题Day113】LC1797设计一个验证系统 | 哈希表
43 0
|
6月前
|
存储 缓存
【每日一题Day336】LC146最近最少使用缓存 | 哈希表+链表
【每日一题Day336】LC146最近最少使用缓存 | 哈希表+链表
49 0
|
6月前
|
机器学习/深度学习
【每日一题Day120】LC2341数组能形成多少数对 | 哈希表 排序
【每日一题Day120】LC2341数组能形成多少数对 | 哈希表 排序
40 0
|
6月前
|
存储
【每日一题Day158】LC2395和相等的子数组 | 哈希表
【每日一题Day158】LC2395和相等的子数组 | 哈希表
31 0
|
6月前
|
算法
【每日一题Day229】LC2352相等行列对 | 哈希
【每日一题Day229】LC2352相等行列对 | 哈希
45 0
|
6月前
【每日一题Day136】LC982按位与为零的三元组 | 哈希表
【每日一题Day136】LC982按位与为零的三元组 | 哈希表
62 0
|
6月前
|
存储 人工智能 BI
【每日一题Day147】LC1615最大网络秩 | 枚举 哈希表
【每日一题Day147】LC1615最大网络秩 | 枚举 哈希表
51 0
|
6月前
【每日一题Day135】LC1487保证文件名唯一 | 哈希表
【每日一题Day135】LC1487保证文件名唯一 | 哈希表
24 0
|
6月前
|
存储
【每日一题Day352】LC1726同积元组 | 哈希表+排列组合
【每日一题Day352】LC1726同积元组 | 哈希表+排列组合
36 0