码迷,mamicode.com
首页 > 移动开发 > 详细

HappyLeetcode38: Excel Sheet Column Number

时间:2014-12-29 21:17:41      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:

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 -> 1
    B -> 2
    C -> 3
    ...
    Z -> 26
    AA -> 27
    AB –> 28 
 
这道题非常之简单,比起原题来简单不少,非常直接,就是一个进制的问题。代码奉上
class Solution {
public:
    int titleToNumber(string s) {
        if (s == "")
            return 0;
        int result = 0;
        int i = 0;
        while (s[i] != \0)
        {
            result = result * 26 + (s[i]-A+1);
            i++;
        }
        return result;
    }
};
 习惯了字符串为空用s=="",实际上用s.empty()更为规范和合适一些。

HappyLeetcode38: Excel Sheet Column Number

标签:

原文地址:http://www.cnblogs.com/chengxuyuanxiaowang/p/4192357.html

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