原题网址:https://leetcode.com/problems/excel-sheet-column-number/
Related to question Excel Sheet Column Title
Given a column title as appear in an Excel sheet, return its corresponding column number.
For example:
A -> 1
B -> 2
C -> 3
...
Z -> 26
AA -> 27
AB -> 28
方法:
public class Solution {
public int titleToNumber(String s) {
int n = 0;
for(int i=0; i<s.length(); i++) {
n = (n*26) + (int)(s.charAt(i) - 'A') + 1;
}
return n;
}
}

本文详细解释了如何将Excel中表示列的字母组合转换为对应的数值,通过一个具体的例子展示了算法实现过程。
491

被折叠的 条评论
为什么被折叠?



