美文网首页
Excel表中的AB,AC列的序号实现

Excel表中的AB,AC列的序号实现

作者: SweetBecca | 来源:发表于2016-07-27 23:59 被阅读34次

    我已经提前步入了准备休假回家的开心节奏中啦!
    今天纯手机刷了题,不想用手机写简书了,浪费时间,现发布,过后补。
    29日凌晨补好了~

    纯手机一次AC的代码:

    发现果然还是用手机写的时候简短,因为手机打字费劲。

    Tips:
    1. 字符的Ascii码的获取比想象中简单智能~
    2. pow函数还没忘,开心。
    class Solution {
    public:
        int titleToNumber(string s) {
            int ans = s[s.length() - 1] - 'A' + 1;
            for(int i = 0; i < s.length() - 1; i++){
                ans += (s[i] - 'A' + 1) * pow(26 , (s.length() - i -1) );
            }
            return ans;
        }
    };
    

    相关文章

      网友评论

          本文标题:Excel表中的AB,AC列的序号实现

          本文链接:https://www.haomeiwen.com/subject/cwfajttx.html