会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Sherry_Yang
首页
新随笔
管理
2018年1月23日
【easy】168. Excel Sheet Column Title 171. Excel Sheet Column Number
摘要: class Solution { public: string convertToTitle(int n) { if (n == 0) { return ""; } return convertToTitle((n - 1) / 26) + (char)((n - 1) % 26 + 'A'); } }; ...
阅读全文
posted @ 2018-01-23 11:29 Sherry_Yang
阅读(102)
评论(0)
推荐(0)
编辑