Microsoft-Excel Sheet Column Number

Posted IncredibleThings

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Microsoft-Excel Sheet Column Number相关的知识,希望对你有一定的参考价值。

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 
    ...

Example 1:

Input: "A"
Output: 1

Example 2:

Input: "AB"
Output: 28

Example 3:

Input: "ZY"
Output: 701


本质就是将一个26进制的数,转换成10进制的数

class Solution {
    public int titleToNumber(String s) {
        if(s == null && s.length() == 0){
            return 0;
        }
        int len = s.length();
        int sum = 0;
        for(int i=0; i<len; i++){
            int temp = s.charAt(i) - ‘A‘+ 1;
            sum = sum * 26 + temp;
        }
        return sum;
    }
}

 

以上是关于Microsoft-Excel Sheet Column Number的主要内容,如果未能解决你的问题,请参考以下文章

数据重新爬取——高德接口

导入excel

复制& 粘贴到下一个空单元格。

python读取excel学习

如何在 google sheet api 中获取列标题及其名称的映射?

python读取excel表