leetcode 168
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 168相关的知识,希望对你有一定的参考价值。
168. Excel Sheet Column Title
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
给定一个正整数,返回它作为出现在Excel表中的正确列向标题。相当于26进制。
代码如下:
1 class Solution { 2 public: 3 string convertToTitle(int n) { 4 string ss; 5 while(n > 0) 6 { 7 ss = (char)(--n % 26 + ‘A‘) + ss; 8 n /= 26; 9 } 10 return ss; 11 } 12 };
以上是关于leetcode 168的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 168 Excel表列名称[26进制] HERODING的LeetCode之路
精心收集的 48 个 JavaScript 代码片段,仅需 30 秒就可理解
LeetCode810. 黑板异或游戏/455. 分发饼干/剑指Offer 53 - I. 在排序数组中查找数字 I/53 - II. 0~n-1中缺失的数字/54. 二叉搜索树的第k大节点(代码片段