168. Excel表列名称


168. Excel 表列名称

难度简单 317
给定一个正整数,返回它在 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) {
        StringBuilder sb = new StringBuilder();
        while (n > 0) {
            int c = (n-1)% 26;
            sb.insert(0, (char) ('A' + c));
            n = (n-1)/26;
        }
        return sb.toString();
// 作者:windliang
// 链接:https://leetcode-cn.com/problems/excel-sheet-column-title/solution/xiang-xi-tong-su-de-si-lu-fen-xi-by-windliang-2/
    }
}

image.png
https://leetcode-cn.com/problems/excel-sheet-column-title/solution/xiang-xi-tong-su-de-si-lu-fen-xi-by-windliang-2/
https://leetcode-cn.com/problems/excel-sheet-column-title/solution/168-by-ikaruga/
https://leetcode-cn.com/problems/excel-sheet-column-title/solution/guan-yu-n-de-li-jie-by-douya0808/


文章作者:   future
版权声明:   本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 future !
 上一篇
437. 路径总和 III--🀄️ 437. 路径总和 III--🀄️
437. 路径总和 III难度中等 763给定一个二叉树,它的每个结点都存放着一个整数值。找出路径和等于给定数值的路径总数。路径不需要从根节点开始,也不需要在叶子节点结束,但是路径方向必须是向下的(只能从父节点到子节点)。二叉树不超过 10
下一篇 
无标题 无标题
2021-03-03 future
  目录