码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode171. Excel表列序号

时间:2020-08-02 19:59:36      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:字符串   距离   ima   number   ber   return   title   image   alt   

技术图片

把每一位的字母转换成1~26的数字,再乘上pow(26, x),x是当前字符的位置到字符串末尾的距离,比如最后一个字母,就乘上26的0次方,也就是1.
倒数第二个字母,就乘上26的1次方,依次类推。

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

LeetCode171. Excel表列序号

标签:字符串   距离   ima   number   ber   return   title   image   alt   

原文地址:https://www.cnblogs.com/linrj/p/13420042.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!