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

2016-07-27  本文已影响34人  SweetBecca

我已经提前步入了准备休假回家的开心节奏中啦!
今天纯手机刷了题,不想用手机写简书了,浪费时间,现发布,过后补。
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;
    }
};
上一篇下一篇

猜你喜欢

热点阅读