Excel Sheet Column Title
Given a non-zero 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
Credits:
Special thanks to @ifanchu for adding this problem and creating all test cases.
Excel序是這樣的:A~Z, AA~ZZ, AAA~ZZZ, ……
本質上就是將一個10進制數轉換為一個26進制的數
注意:由於下標從1開始而不是從0開始,因此要減一操作。
class Solution { public: string convertToTitle(int n) { string ret = ""; while(n) { ret = (char)((n-1)%26+'A') + ret; n = (n-1)/26; } return ret; } };