输出:
ae
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
python解法
- 解题思路:
- 这段代码的目标是模拟手机键盘的输入处理,特别是传统的T9输入法。具体来说,用户输入一串字符,程序根据输入的字符来模拟手机键盘的按键输入,最终输出对应的文本。
T9输入法:T9输入法使用数字键来输入字母。例如,按键 2 映射到字母 “abc”,按键 3 映射到字母 “def”,依此类推。如果连续按多次同一个数字键,则输出字母的不同选择。例如,按键 “2” 第一次按下输出 “a”,第二次输出 “b”,第三次输出 “c”。
输入规则:
输入是一个字符串,字符可以是字母、空格、数字、特殊字符(如 “#”, “/”, 等)。
特殊字符 # 切换输入模式:如果当前输入是英文模式,则切换为数字输入模式,反之亦然。
切换模式时,缓存区的字符会被清空,并根据输入模式来处理后续字符。
/ 则是用于清空当前缓存区的字符,不做任何字符转换。
字符 char 根据当前模式和按键次数,决定最终字符的输出
class PhoneInput:
KEYS = (" ", ",.", "abc", "def", "ghi", "jkl", "mno", "pqrs", "tuv", "wxyz")
def __init__(self):
self.buf = []
self.is_eng = False
self.rep = 0
def process(self, text):
"""
处理输入的字符。遍历每个字符,处理后返回最终的文本结果。
"""
for char in text + ' ':
if char == '#':
self._flush()
self.is_eng = not self.is_eng
elif char == '/':
self._flush()
else:
self._handle_char(char)
return ''.join(self.buf)
def _handle_char(self, char):
"""
根据当前模式(英文或数字)处理当前输入的字符。
"""
if not self.is_eng:
self.buf.append(char)
elif self.rep == 0 or char != self.buf[-1]:
self._flush()
self.buf.append(char)
self.rep = 1
else:
self.rep += 1
def _flush(self):
"""
刷新缓存区,根据输入模式决定当前按键的输出字符。
"""
if self.is_eng and self.rep > 0:
key = int(self.buf.pop())
char = self.KEYS[key][(self.rep - 1) % len(self.KEYS[key])]
self.buf.append(char)
self.rep = 0
def main():
processor = PhoneInput()
result = processor.process(input())
print(result)
if __name__ == "__main__":
main()
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
java解法
- 解题思路
- 本题的目标是模拟手机键盘的输入处理,类似于传统的T9输入法。每个数字键对应多个字符,连续按同一个数字键时会依次选择对应的字符。用户输入的字符经过处理后,程序返回最终的文本。
输入模式切换:如果遇到 # 字符,输入模式会在“英文模式”和“数字模式”之间切换。
缓存与重复按键处理:如果当前是英文模式且用户连续按下同一个数字键,程序会根据按键的次数输出对应的字符;如果是数字模式,按键直接转换为数字。
处理流程:
输入字符串:逐字符处理输入的字符串。
输入模式切换:
如果是 #,切换输入模式,并清空缓存。
如果是 /,清空当前缓存。
字符处理:根据当前模式处理字符:
如果是“数字模式”,直接将字符追加到输出中。
如果是“英文模式”,则根据字符的重复按下次数,决定输出字符(比如按 2 一次是 “a”,按两次是 “b”)。
清空操作:flush() 方法在需要时将缓存的字符转换为最终的输出字符。
import java.util.Scanner;
public class Main {
private static final String[] KEYS = {" ", ",.", "abc", "def", "ghi", "jkl", "mno", "pqrs", "tuv", "wxyz"};
private StringBuilder buf;
private boolean isEng;
private int rep;
public Main() {
this.buf = new StringBuilder();
this.isEng = false;
this.rep = 0;
}
public String process(String text) {
for (char ch : (text + " ").toCharArray()) {
if (ch == '#') {
flush();
isEng = !isEng;
} else if (ch == '/') {
flush();
} else {
handleChar(ch);
}
}
return buf.toString();
}
private void handleChar(char ch) {
if (!isEng) {
buf.append(ch);
} else if (rep == 0 || ch != buf.charAt(buf.length() - 1)) {
flush();
buf.append(ch);
rep = 1;
} else {
rep++;
}
}
private void flush() {
if (isEng && rep > 0) {
int key = Character.getNumericValue(buf.charAt(buf.length() - 1));
char newChar = KEYS[key].charAt((rep - 1) % KEYS[key].length());
buf.setCharAt(buf.length() - 1, newChar);
}
rep = 0;
}
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
String input = scanner.nextLine();
scanner.close();
Main processor = new Main();
String result = processor.process(input);
System.out.println(result);
}
}
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
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
C++解法
更新中
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
C解法
更新中
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
JS解法
输入模式切换:通过 # 来切换输入模式,英文模式和数字模式之间进行切换。英文模式下,连续按同一个数字键可以输出不同的字母;数字模式下,直接输出数字字符。
重复按键处理:在英文模式下,如果连续按下同一个数字键,程序会根据按下的次数来输出不同的字符。例如,按下数字 2 第一次输出 “a”,第二次输出 “b”,第三次输出 “c” 等。
清空操作:通过 / 来清空当前缓存的输入,并结束当前的重复按键计数。
const readline = require("readline");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
let isEng = false;
let repeatCount = 0;
const stack = [];
rl.on("line", (line) => {
console.log(getResult(line));
isEng = false;
repeatCount = 0;
stack.length = 0;
});
function getResult(s) {
s += " ";
for (let c of s) {
switch (c) {
case "#":
toggleMode();
break;
case "/":
interrupt();
break;
default:
handleCharacter(c);
break;
}
}
return stack.slice(0, stack.length - 1).join("");
}
function toggleMode() {
interrupt();
isEng = !isEng;
}
function interrupt() {
if (!isEng || stack.length === 0 || repeatCount === 0) return;
stack.push(mapChar(stack.pop(), repeatCount));
repeatCount = 0;
}
function handleCharacter(c) {
if (!isEng) {
stack.push(c);
} else {
if (repeatCount === 0) {
stack.push(c);
repeatCount++;
} else {
if (c !== stack[stack.length - 1]) {
interrupt();
stack.push(c);
}
repeatCount++;
}
}
}
const dict = [
" ",
",.",
"abc",
"def",
"ghi",
"jkl",
"mno",
"pqrs",
"tuv",
"wxyz",
];
function mapChar(c, repeat) {
const num = parseInt(c);
const chars = dict[num];
return chars[(repeat - 1) % chars.length];
}
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
- 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
注意:
如果发现代码有用例覆盖不到的情况,欢迎反馈!会在第一时间修正,更新。
解题不易,如对您有帮助,欢迎点赞/收藏
评论记录:
回复评论: