题解 | #配置文件恢复#

配置文件恢复

https://www.nowcoder.com/practice/ca6ac6ef9538419abf6f883f7d6f6ee5

import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Scanner;
import java.util.Set;

public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        // 注意 hasNext 和 hasNextLine 的区别
        while (in.hasNextLine()) { // 注意 while 处理多个 case
            String str = in.nextLine();
            System.out.println(matchStr(str));
        }
        in.close();
    }

    private static String matchStr(String input) {
        String[] arr_input = input.split(" ");
        Map<String, String> map = new HashMap<>();
        map.put("reset", "reset what");
        map.put("reset board", "board fault");
        map.put("board add", "where to add");
        map.put("board delete", "no board at all");
        map.put("reboot backplane", "impossible");
        map.put("backplane abort", "install first");
        map.put("matchFailed", "unknown command");
        Set<String[]> set = new HashSet<>();
        String match = "matchFailed";
        int matchCount = 0;
        for (String str1 : map.keySet()) {
            set.add(str1.split(" "));
        }
        for (String[] s : set) {
            if (s.length == 2) {
                if (arr_input.length == 2) {
                    if (s[0].startsWith(arr_input[0]) && s[1].startsWith(arr_input[1])) {
                        match = s[0] + " " + s[1];
                        matchCount++;
                    }
                }
            } else {
                if (arr_input.length == 1) {
                    if (s[0].startsWith(arr_input[0])) {
                        match = s[0];
                        matchCount++;
                    }
                }
            }
        }
        return matchCount > 1 ? "unknown command" : map.get(match);
    }
}

全部评论

相关推荐

霁华Tel:秋招结束了,好累。我自编了一篇对话,语言别人看不懂,我觉得有某种力量在控制我的身体,我明明觉得有些东西就在眼前,但身边的人却说啥也没有,有神秘人通过电视,手机等在暗暗的给我发信号,我有时候会突然觉得身体的某一部分不属于我了。面对不同的人或场合,我表现出不一样的自己,以至于都不知道自己到底是什么样子的人。我觉得我已经做的很好,不需要其他人的建议和批评,我有些时候难以控制的兴奋,但是呼吸都让人开心。
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务