首页 > 代码库 > 13.罗马数字转成整形 Roman to Integer
13.罗马数字转成整形 Roman to Integer
Given a roman numeral, convert it to an integer.
Input is guaranteed to be within the range from 1 to 3999.
public class Solution {
public int RomanCharToInt(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;
}
}
public int RomanToInt(string s)
{
int length = s.Length;
int i = length - 1;
int sum = RomanCharToInt(s[i--]);
while (i >= 0)
{
if (RomanCharToInt(s[i + 1]) > RomanCharToInt(s[i]))
{
sum -= RomanCharToInt(s[i--]);
}
else
{
sum += RomanCharToInt(s[i--]);
}
}
return sum;
}
}
来自为知笔记(Wiz)
13.罗马数字转成整形 Roman to Integer
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。