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

LeetCode13——Roman to Integer

时间:2015-01-27 18:22:38      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:acm   leetcode   roman   

Given a roman numeral, convert it to an integer.

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

题目大意

给你个罗马数字,把它转换成一个int数。输入限定在[1, 3999]。

难度系数:容易

实现

一次性通过,:)

int getVal(char a)
{
    switch (a) {
    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;
    }
    return 0;
}

int romanToInt(string s)
{
    int res = 0;
    char max = ‘I‘;
    for (int i = s.size()-1; i >= 0; --i) {
        if (getVal(s[i]) >= getVal(max)) {
            max = s[i];
            res += getVal(s[i]);
        } else {
            res -= getVal(s[i]);
        }
    }
    return res;
}

LeetCode13——Roman to Integer

标签:acm   leetcode   roman   

原文地址:http://blog.csdn.net/booirror/article/details/43197595

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