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

leetcode:Roman to Integer

时间:2015-04-18 17:46:15      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:leetcode

class Solution {
public:
    int romanToInt(string s) {
         int map[128];
        if(s.size()==0)
            return 0;
        map[‘I‘]=1;
        map[‘V‘]=5;
        map[‘X‘]=10;
        map[‘L‘]=50;
        map[‘C‘]=100;
        map[‘D‘]=500;
        map[‘M‘]=1000;
        int res = map[s[0]];
        for(int i=1;i<s.size();i++)
        {
            if(map[s[i]]<=map[s[i-1]])
                res += map[s[i]];
            else
                res = res-2*map[s[i-1]]+map[s[i]];
        }
        return res;
    }
};

leetcode:Roman to Integer

标签:leetcode

原文地址:http://blog.csdn.net/majing19921103/article/details/45114759

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