leetcode 168. Excel表列名称

Posted wz-archer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 168. Excel表列名称相关的知识,希望对你有一定的参考价值。

链接: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表列名称的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode--168--Excel表列名称

LeetCode 168 Excel表列名称[26进制] HERODING的LeetCode之路

LeetCode第168题—Excel表列名称—Python实现

LeetCode第168题—Excel表列名称—Python实现

LeetCode第168题—Excel表列名称—Python实现

LeetCode 815. 公交路线 / 909. 蛇梯棋(还是bfs)/ 168. Excel表列名称 / 171. Excel表列序号