Roman-to-integer

题目描述


Given a roman numeral, convert it to an integer.

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

code:
public class Solution {
    public int romanToInt(String s) {
        Map<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 ans = 0;
        int preValue = 0;
        for (int i = s.length() - 1; i >= 0; i--) {
            int curValue = map.get(s.charAt(i));
            if (curValue < preValue)
                ans -= curValue;
            else
                ans += curValue;
            preValue = curValue;
        }
        return ans;
    }
}

use the map, which has the operation of get or put

猜你喜欢

转载自blog.csdn.net/neo233/article/details/80753008