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

LeetCode171——Excel Sheet Column Number

时间:2015-01-14 17:59:42      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:excel   string   c++   leetcode   

题目

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 

Credits: Special thanks to @ts for adding this problem and creating all test cases.

int titleToNumber(string s) {

}

题目大意

给定电子表上的一栏标题,返回对应的数字。

实现

int titleToNumber(string s) {
    int val = 0;
    for (int i = 0; i < s.length(); ++i) {
        val += (s[i]- ‘A‘ + 1) * static_cast<int>(pow((double)26, (int)(s.length() - 1 -i))); 
    }
    return val;    
}

当然,也可以不使用pow函数。比如下面这种做法:

int titleToNumber(string s) {
    int val = 0;
    for (int i = 0; i < s.length(); ++i) {
        val = val*26 + (s[i]- ‘A‘ + 1);
    }
    return val;    
}

LeetCode171——Excel Sheet Column Number

标签:excel   string   c++   leetcode   

原文地址:http://blog.csdn.net/booirror/article/details/42712427

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