【leetcode刷题笔记】Roman to Integer

时间:2023-03-09 12:56:18
【leetcode刷题笔记】Roman to Integer

Given a roman numeral, convert it to an integer.

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


题解:转换的方法:从左往右扫描罗马字符,如果当前的字符对应的数字比上一个数字小,就直接加上这个数字;否则加上这个数字并且减去上一个数字的两倍,然后更新上一个数字。利用一个HashMap存放罗马字符和数字的对应。

罗马数字和阿拉伯数字的对应表格参见http://www.cnblogs.com/sunshineatnoon/p/3856057.html

例如罗马数字DCXIX:500+100+10+1+10-2 = 619

代码如下:

 public class Solution {
public int romanToInt(String s) {
if(s == null || s.length() == 0)
return 0; HashMap<Character, Integer> map= new HashMap<Character,Integer>();
map.put('I', 1);
map.put('V', 5);
map.put('X', 10);
map.put('L', 50);
map.put('C', 100);
map.put('D', 500);
map.put('M', 1000); int length = s.length();
int result = map.get(s.charAt(0));
int last = result; for(int i = 1;i < length;i++){
int temp = map.get(s.charAt(i));
if(temp <= last)
result += temp;
else
result = result + temp - 2*last;
last = temp;
} return result;
}
}