(leetcode)Excel Sheet Column Title

时间:2015-06-03 21:22:08   收藏:0   阅读:281

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) {
		char c;
		string result;
		if(n < 1) return "";
		while(n)
		{
			n--;
			c = n%26 + ‘A‘;
			result = c + result;
			n = n/26;
		}
		return result;	
    }
};

  

原文:http://www.cnblogs.com/chdxiaoming/p/4550050.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!