leetcode第13题

简介: 解法一先来一种不优雅的,也就是我开始的想法。就是遍历字符串,然后转换就可以,但同时得考虑 IV,IX 那些特殊情况。

image.png

top13

和上一道题相反,将罗马数字转换成阿拉伯数字。

解法一

先来一种不优雅的,也就是我开始的想法。就是遍历字符串,然后转换就可以,但同时得考虑 IV,IX 那些特殊情况。

publicintgetInt(charr) {
intans=0;
switch (r) {
case'I':
ans=1;
break;
case'V':
ans=5;
break;
case'X':
ans=10;
break;
case'L':
ans=50;
break;
case'C':
ans=100;
break;
case'D':
ans=500;
break;
case'M':
ans=1000;
        }
returnans;
    }
publicintgetInt(charr, charr_after) {
intans=0;
switch (r) {
case'I':
ans=1;
break;
case'V':
ans=5;
break;
case'X':
ans=10;
break;
case'L':
ans=50;
break;
case'C':
ans=100;
break;
case'D':
ans=500;
break;
case'M':
ans=1000;
break;
        }
if (r=='I') {
switch (r_after) {
case'V':
ans=4;
break;
case'X':
ans=9;
            }
        }
if (r=='X') {
switch (r_after) {
case'L':
ans=40;
break;
case'C':
ans=90;
            }
        }
if (r=='C') {
switch (r_after) {
case'D':
ans=400;
break;
case'M':
ans=900;
            }
        }
returnans;
    }
publicbooleanisGetTwoInt(charr, charr_after) {
if (r=='I') {
switch (r_after) {
case'V':
returntrue;
case'X':
returntrue;
            }
        }
if (r=='X') {
switch (r_after) {
case'L':
returntrue;
case'C':
returntrue;
            }
        }
if (r=='C') {
switch (r_after) {
case'D':
returntrue;
case'M':
returntrue;
            }
        }
returnfalse;
    }
publicintromanToInt(Strings) {
intans=0;
for (inti=0; i<s.length() -1; i++) {
ans+=getInt(s.charAt(i), s.charAt(i+1));
//判断是否是两个字符的特殊情况if (isGetTwoInt(s.charAt(i), s.charAt(i+1))) {
i++;
            }
        }
//将最后一个字符单独判断,如果放到上边的循环会越界if (!(s.length() >=2&&isGetTwoInt(s.charAt(s.length() -2), s.charAt(s.length() -1)))) {
ans+=getInt(s.charAt(s.length() -1));
        }
returnans;
    }

解法二

https://leetcode.com/problems/roman-to-integer/description/

publicintromanToInt(Strings) {
intsum=0;
if(s.indexOf("IV")!=-1){sum-=2;}
if(s.indexOf("IX")!=-1){sum-=2;}
if(s.indexOf("XL")!=-1){sum-=20;}
if(s.indexOf("XC")!=-1){sum-=20;}
if(s.indexOf("CD")!=-1){sum-=200;}
if(s.indexOf("CM")!=-1){sum-=200;}
charc[]=s.toCharArray();
intcount=0;
for(;count<=s.length()-1;count++){
if(c[count]=='M') sum+=1000;
if(c[count]=='D') sum+=500;
if(c[count]=='C') sum+=100;
if(c[count]=='L') sum+=50;
if(c[count]=='X') sum+=10;
if(c[count]=='V') sum+=5;
if(c[count]=='I') sum+=1;
   }
returnsum;
}


把出现的特殊情况,提前减了就可以。

时间复杂度:O(1)。

空间复杂度:O(1)。


这道题也不难,自己一开始没有充分利用罗马数字的特点,而是用一些 if,switch 语句判断是否是特殊情况,看起来就很繁琐了。

相关文章
|
6月前
LeetCode
LeetCode
40 0
|
6月前
|
Java
leetcode-474:一和零
leetcode-474:一和零
41 0
|
6月前
|
消息中间件 Kubernetes NoSQL
LeetCode 1359、1360
LeetCode 1359、1360
|
存储
leetcode:53.最大字序和
给定一个整数数组 nums ,找到一个具有最大和的连续子数组(子数组最少包含一个元素),返回其最大和。
53 0
leetcode 283 移动零
leetcode 283 移动零
57 0
|
算法
LeetCode——944. 删列造序
LeetCode——944. 删列造序
110 0
|
机器学习/深度学习
leetcode第50题
求幂次方,用最简单的想法,就是写一个 for 循环累乘。 至于求负幂次方,比如 2^{-10}2−10,可以先求出 2^{10}210,然后取倒数,1/2^{10}1/210 ,就可以了 double mul = 1; if (n > 0) { for (int i = 0; i < n; i++) { mul *= x; } } else { n = -n; for (int i = 0; i < n; i++) { mul *= x; } mul = 1 / mul; }
leetcode第50题
|
算法
leetcode第42题
也就是红色区域中的水, 数组是 height = [ 0, 1, 0, 2, 1, 0, 1, 3, 2, 1, 2, 1 ] 。 原则是高度小于 2,temp ++,高度大于等于 2,ans = ans + temp,temp = 0。 temp 初始化为 0 ,ans 此时等于 2。 height [ 0 ] 等于 0 < 2,不更新。 height [ 1 ] 等于 1 < 2,不更新。 height [ 2 ] 等于 0 < 2, 不更新。 height [ 3 ] 等于 2 >= 2, 开始更新 height [ 4 ] 等于 1 < 2,temp = temp + 1 = 1。 h
104 0
leetcode第42题
leetcode第48题
将一个矩阵顺时针旋转 90 度,并且不使用额外的空间。大概属于找规律的题,没有什么一般的思路,观察就可以了。 解法一 可以先转置,然后把每列对称交换交换一下
leetcode第48题
leetcode第54题
在 leetcode 的 solution 和 discuss 看了下,基本就是这个思路了,只是实现上有些不同,怎么用来标记是否走过,当前方向,怎么遍历,实现有些不同,但本质上是一样的。就是充分理解题意,然后模仿遍历的过程。
105 0
leetcode第54题