当前位置:   article > 正文

【华为OD】C卷真题 100分:密码解密 JavaScript代码实现[思路+代码]_给定一段"密文"字符串s,其中字符都是经过"密码本"映射的,现需要将"密文"解密并且

给定一段"密文"字符串s,其中字符都是经过"密码本"映射的,现需要将"密文"解密并且

  C++、Java、python代码:

【华为OD】C卷真题 100分:密码解密 C/C++代码实现[思路+代码]-CSDN博客

【华为OD】C卷真题 100分:密码解密 Java代码实现[思路+代码]-CSDN博客

【华为OD】C卷真题 100分:密码解密 Python代码实现[思路+代码]-CSDN博客 

 题目描述

给定一段“密文”字符串 s,其中字符都是经过“密码本”映射的,现需要将“密文”解密并输出。

映射的规则('a' ~ 'i')分别用('1' ~ '9')表示;('j' ~ 'z')分别用("10*" ~ "26*")表示。

约束:映射始终唯一。

输入描述

“密文”字符串

输出描述

明文字符串

备注

翻译后的文本长度在100以内

示例1

输入

20*19*20*

输出

tst

示例2

输入

12345610*

输出

abcdefj

     879                                                         
                                                            
              +---+                                                          
  3            |   |       ++                               +       +---|   
  |           |   | 3      +                6               +  |   +   |        +
  |      +     |   |       +         +                      +    |  +   |       +
  |      +    |   +---+    +        +        +++++          +   +  +   |        +
  |      +    | +      |   +   +----+        |   |          +   +  +   |        +
  |      +  3 | +      |   +   +    +      2 |   |     2    +   +  +   |        +
  |      +    | +      |   +   +    +        |   |          +   +  +   |        +
  |      +---+ +     |    |  |    +    ----+   |   +---+    |  |  +   |         +
  |      |     +     |    |  |    +    |       |   |   |    |  |  +   |         +
  |    1 |     +     | 8  |  |    +  1 |   |    | 1 |   | 1 |   |  +   |        +
  |      |     +     |    |  |    +    |   |    |   |   |   |   |  +   |        +
  |  +---+     +     +---+   |    ++---+    ++   +---+   +---+   |  +   |        +
  |  |         +         |   |    |         ++              |   |  |+   |        +
  |0 |         +         | 0 |  0 |         ++              | 0 |  |+   |        +
  |  |         +         |   |    |         ++              |   |  |+   |        +
  +---+         +          +-------+                       +---+| +|+   |        +
                +                                                    +   |        +
    0   1   2   3   4   5   6   7   8   9  10  11  12 + v:    w  u m    u 1 0 2 4
 

题目解析:

        按映射来进行字符串替换即可,优先判断2位数的情况,再判断一位数即可

代码实现:

  1. const readline = async () => (await iter.next()).value;
  2. const rl = require("readline").createInterface({ input: process.stdin });
  3. const iter = rl[Symbol.asyncIterator]();
  4. async function codeDecrypt(str) {
  5. let ans = "";
  6. let index = 0;
  7. while (index < str.length) {
  8. if (index + 2 < str.length && str[index + 2] === '*') {
  9. ans += String.fromCharCode(parseInt(str.substring(index, index + 2)) + 'a'.charCodeAt(0) - 1);
  10. index += 3;
  11. } else {
  12. ans += String.fromCharCode(parseInt(str.substring(index, index + 1)) + 'a'.charCodeAt(0) - 1);
  13. index += 1;
  14. }
  15. }
  16. return ans;
  17. }
  18. async function main() {
  19. const cipherText = await readline();
  20. console.log(await codeDecrypt(cipherText));
  21. rl.close();
  22. }
  23. main();
'
运行

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/949379
推荐阅读
相关标签
  

闽ICP备14008679号