LeetCode之Easy篇 ——(13)Roman to Integer

Posted promiseslc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode之Easy篇 ——(13)Roman to Integer相关的知识,希望对你有一定的参考价值。

Given a roman numeral, convert it to an integer.

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

思路分析:

  1、熟悉罗马数字的规则。见LeetCode之Easy篇 ——(12)Integer to Roman 

  2、将输入的罗马数字转化成数组,并逐一通过case比对,然后根据其规则进行运算。

Java代码示例:

class Solution {
    public int romanToInt(String s) {
        char[] letters = s.toCharArray();
		int[] nums = new int[letters.length];
		int answer=0;
		
		for(int i = 0; i<letters.length; i++){
			switch(letters[i]){
				case ‘M‘: nums[i]=1000;break;
				case ‘D‘: nums[i]=500;break;
				case ‘C‘: nums[i]=100;break;
				case ‘L‘: nums[i]=50;break;
				case ‘X‘: nums[i]=10;break;
				case ‘V‘: nums[i]=5;break;
				case ‘I‘: nums[i]=1;break;
			}
		}
		
		for(int i=0; i<nums.length-1;i++){
			if(nums[i]>=nums[i+1]) answer+=nums[i];
			else answer-=nums[i];
		}
		answer+=nums[nums.length-1];
		return answer;
    }
}

以上是关于LeetCode之Easy篇 ——(13)Roman to Integer的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode之Easy篇 ——(12)Roman to Integer

Leetcode解题思路总结(Easy篇)

LeetCode-Easy刷题(13) Plus One

java [13。罗马到整数] #Array #Leetcode #Easy#Slow&Fast#Peak&Valley

算法LeetCode算法题-Maximum Subarray

Codeforces 803E--Roma and Poker (DP)