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

leetcode 168. Excel表列名称

时间:2020-03-20 18:33:39      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:problem   BMI   string   leetcode   pre   return   mis   bsp   problems   

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

给定一个正整数,返回它在 Excel 表中相对应的列名称。

例如,

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

示例 1:

输入: 1
输出: "A"

示例 2:

输入: 28
输出: "AB"

示例 3:

输入: 701
输出: "ZY"
class Solution {
public:
    string convertToTitle(int n) {
        string a="";
        while(n){
            n--;
            char b=n%26;
            b=b+A;
            a=a+b;
            n/=26;
        }
        for(int i=0;i<a.length()/2;i++){
            swap(a[i],a[a.length()-1-i]);
        }
        
        return a;
    }
};

 

leetcode 168. Excel表列名称

标签:problem   BMI   string   leetcode   pre   return   mis   bsp   problems   

原文地址:https://www.cnblogs.com/wz-archer/p/12533509.html

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