给定一个经过编码的字符串,返回它解码后的字符串。
编码规则为: k[encoded_string],表示其中方括号内部的 encoded_string 正好重复 k 次。注意 k 保证为正整数。
你可以认为输入字符串总是有效的;输入字符串中没有额外的空格,且输入的方括号总是符合格式要求的。
此外,你可以认为原始数据不包含数字,所有的数字只表示重复的次数 k ,例如不会出现像 3a 或 2[4] 的输入。
示例:
s = "3[a]2[bc]", 返回 "aaabcbc".
s = "3[a2[c]]", 返回 "accaccacc".
s = "2[abc]3[cd]ef", 返回 "abcabccdcdcdef".
public String decodeString(String s) {
String res = "";
for (int i = 0; i < s.length(); i++) {
char c = s.charAt(i);
if (this.isDigital(c)) {
String number = "";
int j = i;
while (s.charAt(j) != '[') {
number += s.charAt(j);
j++;
}
int num = Integer.valueOf(number);
int start = j + 1;
int end = start;
int flag = 0;
while (s.charAt(end) != ']' || flag !=0) {
if (s.charAt(end) == '[') {
flag++;
} else if (s.charAt(end) == ']') {
flag--;
}
end++;
}
res += this.composeString(this.decodeString(s.substring(start, end)), num);
i = end;
} else {
res += c;
}
}
return res;
}
public String composeString(String s, int x) {
String res = "";
if (x <= 0) {
return res;
}
for (int i = 0; i < x; i++) {
res += s;
}
return res;
}
public Boolean isDigital(char c) {
if (c >= '0' && c <= '9') {
return true;
}
return false;
}
采用递归的思想,遇到[xxx]重新调用decodeString,当作一个新的字符串作为输入解析。注意[xxx[xx[xx]]]嵌套情况,做好括号匹配。注意多个数字,数字不止是0-9的存在。