现在的位置: 首页 > 综合 > 正文

Leetcode: Excel Sheet Column Title

2017年12月22日 ⁄ 综合 ⁄ 共 245字 ⁄ 字号 评论关闭

Given a positive integer, return its corresponding column title as appear in an Excel sheet.

For example:

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

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

抱歉!评论已关闭.