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

leetcode-Excel Sheet Column Title

时间:2016-05-29 15:14:19      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

题目链接:https://leetcode.com/problems/excel-sheet-column-title/

代码如下:

class Solution {
public:
    string convertToTitle(int n) {
        string ans("");
        while(n > 0)
        {
            int digit = n % 26;
            if(digit == 0)
            {
                digit = 26;
            }
            ans = (char)(A + digit - 1) + ans;
            n = (n - 1) / 26;
        }
        return ans;
    }
};

 

leetcode-Excel Sheet Column Title

标签:

原文地址:http://www.cnblogs.com/shirley-ict/p/5539421.html

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