• 【华为OD题库-027】代码编辑器-java


    题目

    某公司为了更高效的编写代码,邀请你开发一款代码编辑器程序。程序的输入为已有的代码文本和指令序列,程序需输出编辑后的最终文本。指针初始位置位于文本的开头。
    支持的指令(X为大于等于0的整数,word为无空格的字符串):
    FORWARD X:指针向前(右)移动X,如果指针移动位置超过了文本末尾,则将指针移动到文本未尾BACKWARD X:指针向后(左)移动X,如果指针移动位置超过了文本开头,则将指针移动到文本开头
    SEARCH-FORWARD word:从指针当前位置向前查找word并将指针移动到word的起始位置,如果未找到则保持不变
    SEARCH-BACKWARD word:在文本中向后查找word并将指针移动到word的起始位置,如果未找到则保持不变
    INSERT word:在指针当前位置前插入word,并将指针移动到word的结尾
    REPLACE word:在指针当前位置替换并插入字符(删除原有字符,并增加新的字符)
    DELETE X:在指针位置删除X个字符
    输入描述:
    输入的第一行为命令列表的长度K
    输入的第二行为文件中的原始文本接下来的K行,每行为一个指令
    输出描述:
    编辑后的最终结果
    补充说明:
    文本最长长度不超过256K
    示例1
    输入:
    1
    ello
    INSERT h
    输出: hello
    说明: 在文本开头插入
    示例2
    输入:
    2
    hllo
    FORWARD 1
    INSERT e
    输出: hello
    说明: 在文本的第一个位置插入

    示例3
    输入:
    2
    hell
    FORWARD 1000
    INSERT o
    输出:hello
    说明: 在文本的结尾插入
    示例4
    输入:
    1
    hello
    REPLACE HELLO
    输出: HELLO
    说明:替换
    示例5
    输入:
    1
    hello
    REPLACE HELLO WORLD
    输出: HELLO WORLD
    说明: 超过文本长度替换
    示例6
    输入:
    2
    hell
    FORWARD 100000
    REPLACE o
    输出: hello
    说明: 超出文本长度替换

    思路

    简单逻辑处理题,注意边界即可
    本文逻辑,index范围为0到str.length。为str.legnth时代表指针在文件末尾
    注:字符串应该更好处理,转为chars数组反而麻烦很多,本文就是以chars数组实现的

    题解

    package hwod;
    
    import java.util.Scanner;
    
    public class CodeEditor {
        private static char[] chars;
        private static int index = 0;
    
        public static void main(String[] args) {
            Scanner sc = new Scanner(System.in);
            int k = Integer.parseInt(sc.nextLine());
            chars = sc.nextLine().toCharArray();
            String[] commands = new String[k];
            for (int i = 0; i < k; i++) {
                commands[i] = sc.nextLine();
            }
            codeEditor(commands);
            System.out.println(String.valueOf(chars));
        }
    
        private static void codeEditor(String[] commands) {
            int n = commands.length;
            for (int i = 0; i < n; i++) {
                String[] split = commands[i].split("\\s+", 2);
                String cmd = split[0];
                String val = split[1];
                switch (cmd) {
                    case "FORWARD":
                        forward(Integer.parseInt(val));
                        break;
                    case "BACKWARD":
                        backward(Integer.parseInt(val));
                        break;
                    case "SEARCH-FORWARD":
                        searchForward(val);
                        break;
                    case "SEARCH-BACKWARD":
                        searchBackward(val);
                        break;
                    case "INSERT":
                        insert(val);
                        break;
    
                    case "REPLACE":
                        replace(val);
                        break;
                    case "DELETE":
                        delete(Integer.parseInt(val));
                        break;
                    default:
                        System.out.println("指令不合法");
                }
            }
        }
    
        private static void searchForward(String val) {
            char[] target_chars = val.toCharArray();
            int i = Math.min(index, chars.length - 1);
            while (i >= 0) {
                int j = target_chars.length - 1;
                while (i >= 0 && chars[i] != target_chars[j]) i--;//先找到和val最后一个字符相等的位置。
                int t = i;
                while (i >= 0 && j >= 0 && chars[i] == target_chars[j]) {
                    j--;
                    i--;
                }
                if (j == -1) {
                    index = i + 1;
                    break;
                }
                i = t;
            }
    
        }
    
        private static void searchBackward(String val) {
            char[] target_chars = val.toCharArray();
            int i = index;
            while (i < chars.length) {
                int j = 0;
                while (i < chars.length && chars[i] != target_chars[j]) i++;//先找到和val第一个字符相等的位置。
                int t = i;
                while (i < chars.length && j < val.length() && chars[i] == target_chars[j]) {
                    j++;
                    i++;
                }
                if (j == val.length()) {
                    index = t;
                    break;
                }
                i = t;
            }
        }
    
        private static void insert(String val) {
            char[] newChars = new char[val.length() + chars.length];
            for (int i = 0; i < newChars.length; i++) {
                if (i < index) {
                    newChars[i] = chars[i];
                    continue;
                }
                if (i - index < val.length()) {
                    newChars[i] = val.charAt(i - index);
                } else {
                    newChars[i] = chars[i - val.length()];
                }
            }
            chars = newChars;
            index += val.length();
        }
    
        private static void delete(int n) {
            int curn = chars.length - index;
            if (n > curn) n = curn;
            char[] newChar = new char[chars.length - n];
            for (int i = 0; i < newChar.length; i++) {
                if (i < index) {
                    newChar[i] = chars[i];
                } else {
                    newChar[i] = chars[i + n];
                }
            }
            chars = newChar;
        }
    
        private static void replace(String val) {
            delete(val.length());
            insert(val);
    
        }
    
        private static void backward(int n) {
            index = Math.max(0, index - n);
        }
    
        private static void forward(int n) {
            index = Math.min(chars.length, index + n);
    
    
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142

    推荐

    如果你对本系列的其他题目感兴趣,可以参考华为OD机试真题及题解(JAVA),查看当前专栏更新的所有题目。

  • 相关阅读:
    入门力扣自学笔记110 C++ (题目编号1374)
    Nacos基本学习
    求二叉树的高度(可运行)
    linux 性能分析perf
    shell基础(3):编程基础之转义、引用(部分引用、全引用、命令替换)、运算符
    测试饱和了? 大数据测试就业薪资和前景究竟怎么样?
    C++ Reference: Standard C++ Library reference: C Library: cstdio: perror
    抖音直播间上人气有API吗
    java springboot通过EnableConfigurationProperties全局声明bean并处理装配
    关于微信小程序与Java后台交互数据中中文乱码问题的讨论
  • 原文地址:https://blog.csdn.net/qq_31076523/article/details/134481284