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

171 Excel Sheet Column Number Excel表列序号

时间:2018-04-07 16:04:40      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:tle   ring   html   int   for   序号   esc   post   body   

给定一个Excel表格中的列名称,返回其相应的列序号。
示例:
    A -> 1
    B -> 2
    C -> 3
    ...
    Z -> 26
    AA -> 27
    AB -> 28

详见:https://leetcode.com/problems/excel-sheet-column-number/description/

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

 详见:https://www.cnblogs.com/ganganloveu/p/4191180.html

171 Excel Sheet Column Number Excel表列序号

标签:tle   ring   html   int   for   序号   esc   post   body   

原文地址:https://www.cnblogs.com/xidian2014/p/8733202.html

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