码迷,mamicode.com
首页 > 其他好文 > 详细

Roman to Integer

时间:2016-01-07 13:29:09      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:

 

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 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(length - 1));
        for (int i = length - 2; i >= 0; i--) {
            if (map.get(s.charAt(i + 1)) <= map.get(s.charAt(i))) {
                result += map.get(s.charAt(i));  //VI
            } else {
                result -= map.get(s.charAt(i));  //IV
            }
        }
        return result;
        
    }
}

 

Roman to Integer

标签:

原文地址:http://www.cnblogs.com/hygeia/p/5109391.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!