首页 > 其他 > 详细

leetcode Roman to integer

时间:2015-07-14 23:57:45      阅读:374      评论:0      收藏:0      [点我收藏+]

题目:
Given a roman numeral, convert it to an integer.

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

要把罗马数字转换为整数, 罗马数字自行百度

code:

class Solution
{
  public:
    int romanToInt(string s)
    {
       map<char,int> Roman;
       Roman[‘I‘] = 1;
       Roman[‘V‘] = 5;
       Roman[‘X‘] =10;
       Roman[‘L‘] =50;
       Roman[‘C‘] =100;
       Roman[‘D‘] =500;
       Roman[‘M‘] =1000;
       int i=s.length()-1;
       int res;
       while(i>=0)
       {
          if(i==s.length()-1)
          {
            res=Roman[s[i]];
            i--;
          }

          if(Roman[s[i]] >= Roman[s[i+1]])
            res=res+Roman[s[i]];
          else
            res=res-Roman[s[i]];
          i--;
       }

       return res;
   }
};

版权声明:本文为博主原创文章,未经博主允许不得转载。

leetcode Roman to integer

原文:http://blog.csdn.net/nizhannizhan/article/details/46884897

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