国内最全IT社区平台 联系我们 | 收藏本站
华晨云阿里云优惠2
您当前位置:首页 > php开源 > php教程 > Leetcode 171 Excel Sheet Column Number

Leetcode 171 Excel Sheet Column Number

来源:程序员人生   发布时间:2017-02-21 08:44:36 阅读次数:2531次

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 
字符串转数字

类似于进制转换,可以理解为26进制转10进制

class Solution {
public:
    int titleToNumber(string s) {
        int res = 0 , base = 1;
        for(int i = s.size()⑴; i >= 0; i--)
        {
            res += base*(s[i]+1-'A');
            base*=26;
        }
        return res;
    }
};



生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠
程序员人生
------分隔线----------------------------
分享到:
------分隔线----------------------------
关闭
程序员人生