LeetCode 171. Excel Sheet Column Number

来源:互联网 发布:网络电话录音 编辑:程序博客网 时间:2024/05/01 18:01

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 -> 1B -> 2C -> 3...Z -> 26AA -> 27AB -> 28 
  • 题解:联想一下把它作为26进制去算就好了。
class Solution {public:    int titleToNumber(string s) {        int count=0;        for(int i=0;i<s.length();i++){            count+=((s[i]-'A'+1)*(pow(26,s.length()-1-i)));        }        return count;    }};
0 0