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

7-1日刷题

时间:2015-07-01 00:58:36      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:

Roman to Integer

技术分享
    public int romanToInt(String s) {
        //数字:Ⅰ(1)Ⅴ(5)Ⅹ(10)L(50)C(100)D(500)M(1000) 
        HashMap<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 cur = map.get(s.charAt(s.length() - 1));
        int result = cur;
        for (int i = s.length() - 2; i >= 0; --i) {
            int pre = map.get(s.charAt(i));
            if (cur > pre) {
                result -= pre;
            } else {
                result += pre;
            }
            cur = pre;
        }
        return result;
    }
View Code

 

7-1日刷题

标签:

原文地址:http://www.cnblogs.com/fripside/p/4612168.html

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