首页 > 代码库 > LeetCode—Excel Sheet Column Title
LeetCode—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这里就是一个将数字转化为字母的部分,其实就是一个将10进制转化为26进制
#include <string> using namespace std; string convertToTitle(int n) { int i,j,mod; string s; char num; while(n>0) { n--; mod=n%26; num='A'+mod; s=num+s; n=n/26; } return s; } void main() { string x = convertToTitle(28); }
反过来还有个相关的问题:
For example:
A -> 1 B -> 2 C -> 3 ... Z -> 26 AA -> 27 AB -> 28
这里主要的问题是在将string当中的元素一个个取出来,可以利用像数组一样的方法
#include <string> using namespace std; int titleToNumber(string s) { int length = s.size(); int retVal = 0; for(int i = 0; i < length; i++) { int x = (s[i]-'A')+1; retVal =retVal*26+x; } return retVal; } void main() { int x = titleToNumber("AB"); }
LeetCode—Excel Sheet Column Title
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。