首页 > 其他 > 详细

168. Excel Sheet Column Title (Math)

时间:2017-04-07 09:56:11      阅读:207      评论:0      收藏:0      [点我收藏+]

Given a positive integer, return its corresponding column title as appear in an Excel sheet.

For example:

    1 -> A
    2 -> B
    3 -> C
    ...
    26 -> Z
    27 -> AA
    28 -> AB

 

class Solution {
public:
    string convertToTitle(int n) {
        //residue is the value of current bit (from least-significant bit)
        //divided by 26, then iterate
        int residue = n%26, quotient=n;
        string ret = "";

        while(quotient>0){
            if(residue==0) {
                residue = 26; 
                quotient -= 1;
            }
            ret = (char)(A+residue-1) + ret;
            
            quotient /= 26;
            residue = quotient %26;
        }
        
        return ret;
    }
};

 

168. Excel Sheet Column Title (Math)

原文:http://www.cnblogs.com/qionglouyuyu/p/6676333.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!