美文网首页
LeetCode 168.Excel表列名称

LeetCode 168.Excel表列名称

作者: 饼干不干 | 来源:发表于2019-06-09 23:18 被阅读0次

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

例如,
    1 -> A
    2 -> B
    3 -> C
    ...
    26 -> Z
    27 -> AA
    28 -> AB 
    ...
示例 1:
输入: 1
输出: "A"
示例 2:
输入: 28
输出: "AB"
示例 3:
输入: 701
输出: "ZY"

C++

class Solution {
public:
    string convertToTitle(int n) {
        string s;
        while(n) {
            s = (char)((n - 1) % 26 + 'A') + s;
            n = (n - 1) / 26;
        }
        return s;
    }
};

相关文章

网友评论

      本文标题:LeetCode 168.Excel表列名称

      本文链接:https://www.haomeiwen.com/subject/pdvoxctx.html