首页 > 其他 > 详细

13. Roman to Integer

时间:2016-04-13 20:36:54      阅读:270      评论:0      收藏:0      [点我收藏+]

Given a roman numeral, convert it to an integer.

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

int toNumber(char ch) {
    switch (ch) {
        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(char* s) {
    int len = strlen(s);
    int ret = 0;
    
    for(int i = 0; i < len; i++){
        if(i+1 < len && toNumber(s[i+1]) > toNumber(s[i])){
            ret += toNumber(s[i+1]) - toNumber(s[i]);
            i++;
        }
        else ret += toNumber(s[i]);
    }
    return ret;
}

 

13. Roman to Integer

原文:http://www.cnblogs.com/qionglouyuyu/p/5388362.html

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