题目描述
给你一个字符串 s
,它由数字('0'
- '9'
)和 '#'
组成。我们希望按下述规则将 s
映射为一些小写英文字符:
- 字符(
'a'
- 'i'
)分别用('1'
- '9'
)表示。
- 字符(
'j'
- 'z'
)分别用('10#'
- '26#'
)表示。
返回映射之后形成的新字符串。
题目数据保证映射始终唯一。
示例 1:
输入:s = "10#11#12"
输出:"jkab"
解释:"j" -> "10#" , "k" -> "11#" , "a" -> "1" , "b" -> "2".
示例 2:
输入:s = "1326#"
输出:"acz"
提示:
1 <= s.length <= 1000
s[i]
只包含数字('0'
-'9'
)和 '#'
字符。
s
是映射始终存在的有效字符串。
解法
方法一:模拟
我们直接模拟即可。
遍历字符串 $s$,对于当前遍历到的下标 $i$,如果 $i + 2 < n$ 且 $s[i + 2]$ 为 #
,则将 $s[i]$ 和 $s[i + 1]$ 组成的字符串转换为整数,加上 a
的 ASCII 码值减去 1,然后转换为字符,添加到结果数组中,并将 $i$ 增加 3;否则,将 $s[i]$ 转换为整数,加上 a
的 ASCII 码值减去 1,然后转换为字符,添加到结果数组中,并将 $i$ 增加 1。
最后将结果数组转换为字符串返回即可。
时间复杂度 $O(n)$,空间复杂度 $O(n)$。其中 $n$ 为字符串 $s$ 的长度。
1
2
3
4
5
6
7
8
9
10
11
12 | class Solution:
def freqAlphabets(self, s: str) -> str:
ans = []
i, n = 0, len(s)
while i < n:
if i + 2 < n and s[i + 2] == "#":
ans.append(chr(int(s[i : i + 2]) + ord("a") - 1))
i += 3
else:
ans.append(chr(int(s[i]) + ord("a") - 1))
i += 1
return "".join(ans)
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 | class Solution {
public String freqAlphabets(String s) {
int i = 0, n = s.length();
StringBuilder ans = new StringBuilder();
while (i < n) {
if (i + 2 < n && s.charAt(i + 2) == '#') {
ans.append((char) ('a' + Integer.parseInt(s.substring(i, i + 2)) - 1));
i += 3;
} else {
ans.append((char) ('a' + Integer.parseInt(s.substring(i, i + 1)) - 1));
i++;
}
}
return ans.toString();
}
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 | class Solution {
public:
string freqAlphabets(string s) {
string ans = "";
int i = 0, n = s.size();
while (i < n) {
if (i + 2 < n && s[i + 2] == '#') {
ans += char(stoi(s.substr(i, 2)) + 'a' - 1);
i += 3;
} else {
ans += char(s[i] - '0' + 'a' - 1);
i += 1;
}
}
return ans;
}
};
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 | func freqAlphabets(s string) string {
var ans []byte
for i, n := 0, len(s); i < n; {
if i+2 < n && s[i+2] == '#' {
num := (int(s[i])-'0')*10 + int(s[i+1]) - '0'
ans = append(ans, byte(num+int('a')-1))
i += 3
} else {
num := int(s[i]) - '0'
ans = append(ans, byte(num+int('a')-1))
i += 1
}
}
return string(ans)
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13 | function freqAlphabets(s: string): string {
const ans: string[] = [];
for (let i = 0, n = s.length; i < n; ) {
if (i + 2 < n && s[i + 2] === '#') {
ans.push(String.fromCharCode(96 + +s.slice(i, i + 2)));
i += 3;
} else {
ans.push(String.fromCharCode(96 + +s[i]));
i++;
}
}
return ans.join('');
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 | impl Solution {
pub fn freq_alphabets(s: String) -> String {
let s = s.as_bytes();
let mut ans = String::new();
let mut i = 0;
let n = s.len();
while i < n {
if i + 2 < n && s[i + 2] == b'#' {
let num = (s[i] - b'0') * 10 + (s[i + 1] - b'0');
ans.push((96 + num) as char);
i += 3;
} else {
let num = s[i] - b'0';
ans.push((96 + num) as char);
i += 1;
}
}
ans
}
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 | char* freqAlphabets(char* s) {
int n = strlen(s);
int i = 0;
int j = 0;
char* ans = malloc(sizeof(s) * n);
while (i < n) {
int t;
if (i + 2 < n && s[i + 2] == '#') {
t = (s[i] - '0') * 10 + s[i + 1];
i += 3;
} else {
t = s[i];
i += 1;
}
ans[j++] = 'a' + t - '1';
}
ans[j] = '\0';
return ans;
}
|