2013.12.1 23:16
Given a roman numeral, convert it to an integer.
Input is guaranteed to be within the range from 1 to 3999.
Solution:
Given a Roman number, convert it to normal arabian form. Just do the conversion from left to right, one digit by one.
Here is the wiki if you need background knowledge about Roman numerals:
http://en.wikipedia.org/wiki/Roman_numerals
Time complexity is O(n), where n is the length of the given Roman string. Space complexity is O(1), actually 128.
Accepted code:
1 class Solution { 2 public: 3 int romanToInt(string s) { 4 // IMPORTANT: Please reset any member data you declared, as 5 // the same Solution instance will be reused for each test case. 6 int i, len; 7 int res; 8 9 b['I'] = 1; 10 b['V'] = 5; 11 b['X'] = 10; 12 b['L'] = 50; 13 b['C'] = 100; 14 b['D'] = 500; 15 b['M'] = 1000; 16 17 res = 0; 18 i = 0; 19 len = s.length(); 20 while(i < len){ 21 if(i < len - 1){ 22 if(b[s[i]] < b[s[i + 1]]){ 23 res += b[s[i + 1]] - b[s[i]]; 24 i += 2; 25 }else{ 26 res += b[s[i]]; 27 ++i; 28 } 29 }else{ 30 res += b[s[i]]; 31 ++i; 32 } 33 } 34 35 return res; 36 } 37 private: 38 int b[128]; 39 };
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 全程不用写代码,我用AI程序员写了一个飞机大战
· DeepSeek 开源周回顾「GitHub 热点速览」
· 记一次.NET内存居高不下排查解决与启示
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· .NET10 - 预览版1新功能体验(一)