13.罗马数字转整数
依次从左向右遍历字符串,如果下一位字符对应的数字大于当前字符对应的数字,则表示的数为大数减小数的差,同时遍历的索引递增1。
| class Solution {
public int romanToInt(String s) {
Map<Character, Integer> map = new HashMap<>();
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 sum = 0;
for (int i = 0; i < s.length(); i++) {
if (i + 1 < s.length() && map.get(s.charAt(i)) < map.get(s.charAt(i + 1))) {
sum += map.get(s.charAt(i + 1)) - map.get(s.charAt(i));
i++;
} else {
sum += map.get(s.charAt(i));
}
}
return sum;
}
}
|