首页 > 代码库 > Leetcode#168 Excel Sheet Column Title
Leetcode#168 Excel Sheet Column Title
原题地址
26进制数
注意,编号是从1开始的,所以取模取商之前要-1
代码:
1 string convertToTitle(int n) { 2 string res; 3 4 while (n) { 5 res = (char) ((n - 1) % 26 + ‘A‘) + res; 6 n = (n - 1) / 26; 7 } 8 9 return res;10 }
Leetcode#168 Excel Sheet Column Title
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。