当前位置:   article > 正文

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

密码解密od

C++代码:

【华为OD】C卷真题 100分:密码解密 C/C++代码实现[思路+代码]-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. import java.util.Scanner;
  2. public class Main {
  3. public static void main(String[] args) {
  4. Scanner scanner = new Scanner(System.in);
  5. String cipherText = scanner.next();
  6. System.out.println(codeDecrypt(cipherText));
  7. }
  8. public static String codeDecrypt(String str) {
  9. StringBuilder ans = new StringBuilder();
  10. int index = 0;
  11. while (index < str.length()) {
  12. if (index + 2 < str.length() && str.charAt(index + 2) == '*') {
  13. ans.append(Character.toString((char) (Integer.parseInt(str.substring(index, index + 2)) + 'a' - 1)));
  14. index += 3;
  15. } else {
  16. ans.append(Character.toString((char) (Integer.parseInt(str.substring(index, index + 1)) + 'a' - 1)));
  17. index += 1;
  18. }
  19. }
  20. return ans.toString();
  21. }
  22. }

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

闽ICP备14008679号