Leetcode 168 Excel Sheet Column Title 进制数转化

时间:2022-01-08 23:59:01

题意:将数字转化成excel表中的行中的项目

本质是10进制转化为26进制,但是在中间加入了一个不一样的操作,在每次操作前都需要n--

 class Solution {
public:
string convertToTitle(int n) {
string s("");
for(; n--; n/=){
s += string("A");
s[s.size() - ] += n% ;
}
reverse(s.begin(),s.end());
return s;
}
}