题解 | #配置文件恢复#

配置文件恢复

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

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main() {
    char input[21];
    char command[6][21] = {"reset", "reset board", "board add", "board delete", "reboot backplane", "backplane abort"};
    char exec[7][21] = {"reset what", "board fault", "where to add", "no board at all", "impossible", "install first", "unknown command"};
    while(fgets(input, sizeof(input), stdin) != NULL){
        int len = strlen(input);
        // printf("len is %d\n", len);
        if(input[len - 1] == '\n') input[len - 1] = '\0';
        len = strlen(input);
        // printf("len is %d\n", len);
        char firstword[21], secondword[21];
        int oneortwo = 1;
        int i = 0, j = 0;
        while(i < len) {
            // 读取第一个单词
            if(oneortwo == 1) {
                firstword[i] = input[i];
                i++;
                // 如果有空格证明有两个单词
                if(input[i] == ' ') {
                    firstword[i] = '\0';
                    i++;
                    oneortwo = 2;
                }
            } else if(oneortwo == 2) { 
                // 如果已经遇到过空格,读取第二个单词
                secondword[j++] = input[i++];
            }
        }
        secondword[j] = '\0';
        // printf("%s\n%s\n", firstword, secondword);
        // 如果只输入一字串
        int error = 0;
        if(oneortwo == 1) {
        // 只和一个关键字的命令行匹配。
            for(int x = 0; x < i; x++) {
                if(firstword[x] != command[0][x]){
                    // 如果输入一字串, 但是匹配命令有两个关键字,匹配失败
                    printf("%s\n", exec[6]);
                    error = 1;
                }
            }
            if(error == 0) {
                printf("%s\n", exec[0]);
            }
        } else if(oneortwo == 2){
        // 如果有两个词汇
        // 我们先检查第一个单词
            int notmatch[6] = {1};
            // 分别和每个命令匹配
            int firstwordlen = strlen(firstword);
            // printf("first word's length is %d\n", firstwordlen);
            for(int x = 1; x < 6; x++) {
                for(int y = 0; y < firstwordlen && command[x][y] != '\0'; y++) {
                    // printf("字母%c和%c\n",firstword[y],command[x][y]);
                    if(firstword[y] != command[x][y]) {
                        // 遇到不匹配的就标记不匹配
                        notmatch[x] = 1;
                        // printf("单词%s和%s不匹配\n",firstword,command[x]);
                        break;
                    }
                }
            }
        // 然后检查第二个单词
            char *secondwordToken;
            for(int x = 1; x < 6; x++) {
                if(notmatch[x] == 0) {
                    char *temp = (char *)malloc(sizeof(char) * 21);
                    // printf("the command is %s\n", command[x]);
                    int spaceindex;
                    for(int a = 0; a < strlen(command[x]); a++) {
                        if(command[x][a] == ' ') spaceindex = a;
                    }
                    strncpy(temp, command[x] + spaceindex + 1, strlen(command[x]) - spaceindex - 1);
                    secondwordToken = temp;
                    // printf("the command is %s\n", command[x]);
                    // printf("temp (seconde word) is %s\n", temp);
                    if(temp != NULL) {
                        for(int y = 0; y < j && secondword[y] != '\0'; y++) {
                            if(secondword[y] != temp[y]) {
                                notmatch[x] = 1;
                            }
                        }
                    }
                }
            }

            // 检查完两个单词之后如果notmatch里面只有一个0的话我们就找到要执行的命令了,如果有多个0或者没有0,则匹配失败
            int count = 0;
            int index = 0;
            for(int x = 1; x < 6; x++) {
                count += notmatch[x];
                if(notmatch[x] == 0) index = x;
            }
            if(count == 4) {
                printf("%s\n", exec[index]);
            }
            else {
                printf("%s\n", exec[6]);
            }
        }
    }
    return 0;
}

全部评论

相关推荐

工作基本定了,比较满意。这深度学习真是难搞啊,论文看不懂,代码看不懂,不会改,创新点???&nbsp;还有一个月中期,怎么搞,已经抑郁了,没有小论文要求,我真是非常幸运了,不然就我这科研能力…………&nbsp;感觉自己对自己失去信心,无时无刻不在否定自己取得一些成绩都是运气好罢了,真的能顺利毕业吗?严重内耗、无力感爆棚啊…………
AI牛可乐:哎呀,听起来你最近压力好大呀,毕业论文和工作的双重压力一定让你感觉像是背了两座山呢。深度学习确实挺复杂的,就像是要在一片迷雾中找到出路一样。但是,你已经很棒了,工作都定好了,这是很大的成就呢! 论文的事情,别太担心。每个人都有看不懂代码和论文的时候,这是正常的。至于创新点嘛,有时候灵感就像小猫一样,需要一点一点地哄出来的。你可以先试试把你看过的资料整理一下,说不定就能找到新的思路呢。 中期答辩前,你可以列个计划,一步一步来,把大问题分解成小问题,一点一点克服。记得,你不是一个人在战斗,你的导师、同学都是你的战友哦。 至于信心嘛,别否定自己,每个人都会有低谷的时候。你已经取得的成绩,都是你实力的体现。毕业不是问题,只要你不放弃,就一定能顺利走过去的。加油哦,我相信你可以的! 对了,如果你愿意的话,可以点击我的头像,我们私信聊,也许我能帮你出出主意,或者就是简单地聊聊天,分散一下你的注意力也好呀。🐮💪🌟
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
11-21 17:16
科大讯飞 算法工程师 28.0k*14.0, 百分之三十是绩效,惯例只发0.9
点赞 评论 收藏
分享
11-01 08:48
门头沟学院 C++
伤心的候选人在吵架:佬你不要的,能不能拿户口本证明过户给我。。球球了
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务