[分析]
十进制转26进制,需要注意的是26进制是以1为最小数的。
思路1写了好久,放在这儿用于警示自己还需要更多练习。
public class Solution {
// Method 2
// https://leetcode.com/discuss/19047/my-1-lines-code-in-java-c-and-python
// https://leetcode.com/discuss/34526/share-my-java-solusion
// Using the mod operator gives numbers in range [0, 25].
// That's why he used (n-1) so he's converting n from 1 based to 0 based.
public String convertToTitle(int n) {
String res = "";
while (n > 0) {
res = (char)('A' + (n - 1) % 26) + res;
n = (n - 1) / 26;
}
return res;
}
private static char[] map = new char[27];
static {
for (int i = 1;i <= 26; i++) {
map[i] = (char)('A' + i - 1);
}
}
// Method 1
public String convertToTitle1(int n) {
StringBuilder res = new StringBuilder();
while (n > 0) {
int mod = n % 26;
if (mod == 0) {
res.append('Z');
n -= 26;
} else {
res.append(map[mod]);
}
n /= 26;
}
return res.reverse().toString();
}
}
分享到:
相关推荐
在JavaScript中解决LeetCode的第168题——Excel表列名称,是一个与数学和字符串操作相关的编程问题。这个问题要求我们把一个正整数转换成一个Excel列的标题,这种标题是用字母来表示的。例如,数字1对应字母"A",...
例如,我们可以创建一个名为'excel_column_title'的函数,它接受一个整数作为输入,然后通过循环处理,将数字转换为字符串。在这个函数中,我们需要处理余数为0的特殊情况,这时不能直接取模得到26,因为Excel列标题...
然后我们遍历输入的`columnTitle`,对于每一个字符,我们首先计算它在字母表中的位置(`A`的ASCII码值是65,所以需要减去65得到从0开始的索引,再加上1以符合题目描述从1开始)。然后将`result`乘以26(因为是26进制...
在LeetCode上的"Excel Sheet Column Title"问题中,我们需要解决的是将给定的列编号转换成对应的Excel列标题。在Excel表格中,列标题由字母表示,例如"A", "B", "C"一直到"Z",然后是"AA", "AB", "AC"等。当列号超过...
# [LeetCode](https://leetcode.com/problemset/algorithms/)  [![License]...