概述
点击打开链接
class Solution {
public:
string convertToTitle(int n) {
string res="";
int temp =0;
while(n>0){
temp = (n-1)%26;
if(temp>=0) res += 'A'+temp;
n = (n-1)/26;
}
reverse(res.begin(), res.end());
return res;
}
};
最后
以上就是爱笑服饰为你收集整理的leetcode+ 数字准换位字母,进制转换的全部内容,希望文章能够帮你解决leetcode+ 数字准换位字母,进制转换所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复