一、题目描述
现需要实现一种算法,能将一组压缩字符串还原成原始字符串,还原规则如下:
1、字符后面加数字N,表示重复字符N次。例如:压缩内容为A3,表示原始字符串为AAA。
2、花括号中的字符串加数字N,表示花括号中的字符串重复N次。例如:压缩内容为{AB}3,表示原始字符串为ABABAB。
3、字符加N和花括号后面加N,支持任意的嵌套,包括互相嵌套。例如:压缩内容可以{A3B1{C}3}3。
二、输入描述
输入一行压缩后的字符串。
三、输出描述
输出压缩前的字符串。
四、补充说明
- 输入保证,数字不会为0,花括号中的内容不会为空,保证输入的都是合法有效的压缩字符串;
- 输入输出字符串区分大小写;
- 输入的字符串长度为范围[1, 10000];
- 输出的字符串长度为范围[1, 100000];
- 数字N范围[1, 10000]
四、Java算法源码
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String line = sc.nextLine();
int n = line.length();
Stack<String> stack = new Stack<>();
int i = 0;
while (i < n) {
char c = line.charAt(i);
if (c == '{') {
stack.push(String.valueOf(c));
i++;
} else if ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z')) {
stack.push(String.valueOf(c));
i++;
} else if (c >= '0' && c <= '9') {
int j = i;
while (j < n && line.charAt(j) >= '0' && line.charAt(j) <= '9') {
j++;
}
int time = Integer.parseInt(line.substring(i, j));
String pop = stack.pop();
String add = "";
for (int p = 0; p < time; p++) {
add += pop;
}
stack.push(add);
i = j;
} else {
String add = "";
while (!stack.isEmpty()) {
String pop = stack.pop();
if (pop.equals("{")) {
break;
}
add = pop + add;
}
stack.push(add);
i++;
}
}
String ret = "";
while (!stack.isEmpty()) {
ret = stack.pop() + ret;
}
System.out.println(ret);
}
五、效果展示
1、输入
{A3B1{C}3}3
2、输出
AAABCCCAAABCCCAAABCCC
3、说明
{A3B1{C}3}3代表A字符重复3次,B字符重复1次,花括号中的C字符重复3次,最外层花括号中的AAABCCC重复3次。
🏆下一篇:华为OD机试真题 Java 实现【获得完美走位】【2023Q1 100分】
🏆本文收录于,华为OD机试(JAVA)(2022&2023)
本专栏包含了最新最全的2023年华为OD机试真题,有详细的分析和Java解答。已帮助1000+同学顺利通过OD机考。专栏会持续更新,每天在线答疑。