首页 > 其他 > 详细

LeetCode 013 Roman to Integer

时间:2015-02-07 15:48:01      阅读:192      评论:0      收藏:0      [点我收藏+]

题目描述:Roman to Integer

Given a roman numeral, convert it to an integer.

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

 

分析:

① 输入为VII,则数字为V + I + I = 5 + 1 + 1 = 7;

② 输入为IV,则数字为V - I = 5 - 1 = 4。

所以要先判断前一个字符与后一个字符的关系,再决定加减。

 

技术分享

 

代码如下:

class Solution {
public:

    inline int map(const char c) {
        switch (c) {
            case I: return 1;
            case V: return 5;
            case X: return 10;
            case L: return 50;
            case C: return 100;
            case D: return 500;
            case M: return 1000;
            default: return 0;
        }
    }
    
    int romanToInt(string s) {
        
        int result = 0;
        
        for(int i = 0; i < s.size(); i++){
            //判断第一个字符与下一个字符的关系
            if (i > 0 && map(s[i]) > map(s[i - 1])) 
                result += (map(s[i]) - 2 * map(s[i - 1]));
            else result += map(s[i]);
        }
        
        return result;
        
    }
};

 

LeetCode 013 Roman to Integer

原文:http://www.cnblogs.com/510602159-Yano/p/4278826.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!