您的位置:首页 > 其它

LeetCode: Roman to Integer

2012-10-09 00:09 405 查看
Given a roman numeral, convert it to an integer.

Input is guaranteed to be within the range from 1 to 3999.

class Solution {
public:
int map(char c)
{
switch(c)
{
case 'I':
return 1;
case 'V':
return 5;
case 'X':
return 10;
case 'L':
return 50;
case 'C':
return 100;
case 'D':
return 500;
case 'M':
return 1000;
default:
return 0;
}
}

int romanToInt(string s) {
// Start typing your C/C++ solution below
// DO NOT write int main() function
int nSize = s.size();
int pre = 1001;
int result = 0;
int cur;
for (int i = 0; i < nSize; ++i)
{
cur = map(s[i]);
result += cur;
if (cur > pre)
{
result -= 2*pre;
}
pre = cur;
}
return result;
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: