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

171. Excel Sheet Column Number

时间:2018-05-10 11:23:42      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:jpg   ==   col   bsp   str   image   null   进制   http   

技术分享图片

 

该题本质上是进制转换,在这里是26进制数转10进制。代码如下:

 

 1 class Solution {
 2     public int titleToNumber(String s) {
 3         int res = 0;
 4         if(s == null){
 5             return res;
 6         }
 7         
 8         for(int i = 0 ; i < s.length() ; i++){
 9             res = res * 26 + (s.charAt(i) - ‘A‘ + 1);
10         }
11         
12         return res;
13     }
14 }

 

 

END

171. Excel Sheet Column Number

标签:jpg   ==   col   bsp   str   image   null   进制   http   

原文地址:https://www.cnblogs.com/sssysukww/p/9017853.html

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