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

LeetCode: Roman to Interger 题解

时间:2014-06-03 12:09:16      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   java   

Given a roman numeral, convert it to an integer.

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

找到规则即可

罗马数字的表示:

I~1 V~5 X~10 L~50 C~100 D~500 M~1000

规则:

基本数字Ⅰ、X 、C 中的任何一个,自身连用构成数目,或者放在大数的右边连用构成数目,都不能超过三个;放在大数的左边只能用一个。

不能把基本数字V 、L 、D 中的任何一个作为小数放在大数的左边采用相减的方法构成数目;放在大数的右边采用相加的方式构成数目,只能使用一个。

默认所有输入均为正确表示的罗马数字,则有如下code:

bubuko.com,布布扣
 1 class Solution {
 2 public:
 3     int romanToInt(string s) {
 4         int ans=0,i;
 5         map<char,int> Ma;
 6         {
 7             Ma[I]=1;
 8             Ma[V]=5;
 9             Ma[X]=10;
10             Ma[L]=50;
11             Ma[C]=100;
12             Ma[D]=500;
13             Ma[M]=1000;
14         }
15         ans = Ma[s[0]];
16         for(i=1;i<s.size();i++)
17         {
18             ans = ans + Ma[s[i]];
19             if(Ma[s[i]] > Ma[s[i-1]] )
20                 ans -= 2* Ma[s[i-1]];
21         }
22         return ans;
23     }
24 };
bubuko.com,布布扣

 如果在输入中有不符合规则的数字,就需要加特殊的判断。

 有几条须注意掌握:

  1. V 和X 左边的小数字只能用Ⅰ。
  2. L 和C 左边的小数字只能用X。
  3. D 和M 左边的小数字只能用C。       --摘自百度百科http://baike.baidu.com/view/42061.htm?fr=aladdin

 在此就不赘述了

 转载请注明出处:http://www.cnblogs.com/double-win/ 谢谢

LeetCode: Roman to Interger 题解,布布扣,bubuko.com

LeetCode: Roman to Interger 题解

标签:c   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/double-win/p/3760002.html

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