- 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
java解法
- 解题思路
- 这段代码的目标是处理一段字符串,根据输入的索引 idx,将字符串中的第 idx 个部分替换为 “******”,并返回替换后的结果。如果 idx 超出字符串的部分数量,返回 “ERROR”。字符串的分割规则如下:
分割规则:
双引号内的内容作为一个整体,不会被进一步分割。
其他部分根据下划线 _ 分割。
索引范围检查:
如果 idx 超出分割后的部分数量,返回 “ERROR”。
替换部分:
将索引为 idx 的部分替换为 “******”。
重新拼接字符串:
使用下划线 _ 将所有部分重新拼接成一个字符串
import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Main {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int idx = Integer.parseInt(in.nextLine());
String cmd = in.nextLine();
System.out.println(procCmd(idx, cmd));
}
public static String procCmd(int idx, String cmd) {
Pattern pat = Pattern.compile("\"[^\"]*\"|[^_]+");
Matcher mat = pat.matcher(cmd);
StringBuilder res = new StringBuilder();
int cnt = 0;
while (mat.find()) {
if (cnt++ == idx) {
res.append("******");
} else {
res.append(mat.group());
}
res.append("_");
}
if (idx >= cnt) {
return "ERROR";
}
return res.substring(0, res.length() - 1);
}
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
- 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
C++解法
- 解题思路
- 这段代码的目标是根据输入的索引 index,将字符串中的第 index 个部分替换为 “******”,并输出处理后的字符串。如果 index 超出了分割部分的数量,输出 “ERROR”。
字符串分割规则:
双引号包裹的内容:
双引号中的内容被视为一个整体,不会被分割。
双引号可以成对出现,也可以嵌套字符。
下划线 _ 分割部分:
未被双引号包裹的内容以下划线 _ 为分隔符分割为多个部分。
处理步骤:
遍历字符串,维护一个临时变量 part 用于存储当前部分。
使用标志变量 insideQuotes 记录当前是否在双引号范围内。
每当遇到下划线 _ 且不在双引号范围时,将当前部分加入结果,并根据索引判断是否替换为 “******”。
遍历结束后,处理最后一部分内容。
检查是否超出索引范围:
如果超出范围,输出 “ERROR”。
如果未超出范围,输出拼接后的结果。
#include
#include
int main() {
int index;
std::cin >> index;
std::string line;
std::cin.ignore();
std::getline(std::cin, line);
std::string part;
int count = 0;
bool insideQuotes = false;
std::string result;
for (size_t i = 0; i < line.size(); ++i) {
if (line[i] == '\"') {
insideQuotes = !insideQuotes;
part.push_back(line[i]);
}
else if (!insideQuotes && line[i] == '_') {
if (!part.empty()) {
if (count == index) {
result += "******";
}
else {
result += part;
}
result += "_";
count++;
part.clear();
}
}
else {
part.push_back(line[i]);
}
}
if (!part.empty()) {
if (count == index) {
result += "******";
}
else {
result += part;
}
}
else if (result.back() == '_') {
result.pop_back();
}
if (count >= index) {
std::cout << result << std::endl;
}
else {
std::cout << "ERROR" << std::endl;
}
return 0;
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
- 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
C解法
更新中
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
JS解法
-
解题思路
-
这段代码实现了一个命令处理器,用于处理两个输入:
输入的第一个行:一个整数 k,表示要替换的部分索引。
输入的第二行:一个命令字符串,由 "_” 分隔多个部分,部分内容可能用双引号 " 包裹,双引号包裹的内容视为一个整体。
目标是:
按规则解析命令字符串。
如果索引 k 超出解析的部分数量,返回 “ERROR”。
否则,将索引为 k 的部分替换为 “******”,并返回处理后的字符串。
const readline = require("readline");
class CommandProcessor {
constructor() {
this.lines = [];
}
processInput(line) {
this.lines.push(line);
if (this.lines.length === 2) {
const k = parseInt(this.lines[0]);
const commandStr = this.lines[1];
console.log(this.encryptSensitiveField(commandStr, k));
this.lines.length = 0;
}
}
encryptSensitiveField(commandStr, index) {
const commandList = this.parseCommands(commandStr);
if (index >= commandList.length) {
return "ERROR";
}
commandList[index] = "******";
return commandList.join("_");
}
parseCommands(str) {
let parts = [];
let current = [];
for (let i = 0; i < str.length; i++) {
if (str[i] === "_" && current[0] !== '"') {
parts.push(current.join(""));
current = [];
} else if (str[i] === '"' && current.length !== 0) {
parts.push(current.join("") + '"');
current = [];
} else {
current.push(str[i]);
}
}
if (current.length) parts.push(current.join(""));
return parts.filter((part) => part !== "");
}
}
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
const processor = new CommandProcessor();
rl.on("line", (line) => {
processor.processInput(line);
});
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
- 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
注意:
如果发现代码有用例覆盖不到的情况,欢迎反馈!会在第一时间修正,更新。
解题不易,如对您有帮助,欢迎点赞/收藏
评论记录:
回复评论: