Integer to Roman & Roman to Integer

Integer to Roman

Given an integer, convert it to a roman numeral.

The number is guaranteed to be within the range from 1 to 3999.

Clarification

What is Roman Numeral?

Example

4 -> IV

12 -> XII

21 -> XXI

99 -> XCIX

more examples at: http://literacy.kent.edu/Minigrants/Cinci/romanchart.htm

分析:

在罗马数字里,除了1000, 900, 500, 400, 100,90, 50, 40, 10, 9, 5, 4, 1 ,其它数字都可以由以上数字“拼接”而成。以上数字的罗马字符为:

"M", "CM", "D", "CD", "C", "XC", "L", "XL", "X", "IX", "V", "IV", "I" 。

所以,对于15,我们找出10和5,放在一起就是XV,16就是10+5+1, XVI(这里一定是从大到小,能够取最大就必须取最大,不能是 10 + 4 + 1 + 1).

 1 public class Solution {
 2     /**
 3      * @param n
 4      *            The integer
 5      * @return Roman representation
 6      */
 7
 8     public String intToRoman(int number) {
 9         int[] values = { 1000, 900, 500, 400, 100, 90, 50, 40, 10, 9, 5, 4, 1 };
10         String[] numerals = { "M", "CM", "D", "CD", "C", "XC", "L", "XL", "X", "IX", "V", "IV", "I" };
11         StringBuilder result = new StringBuilder();
12         for (int i = 0; i < values.length; i++) {
13             while (number >= values[i]) {
14                 number -= values[i];
15                 result.append(numerals[i]);
16             }
17         }
18         return result.toString();
19     }
20 }

Roman to Integer

Given a roman numeral, convert it to an integer.

The answer is guaranteed to be within the range from 1 to 3999.

Clarification

What is Roman Numeral?

Example

IV -> 4

XII -> 12

XXI -> 21

XCIX -> 99

 1 public class Solution {
 2     /**
 3      * @param s Roman representation
 4      * @return an integer
 5      */
 6     public int romanToInt(String s) {
 7         if(s.length() < 1) return 0;
 8         int value = 0;
 9         int pValue = getRomanValue(s.charAt(0)); // the value of previous character
10
11         for (int i = 1; i < s.length(); i++) {
12             int cValue = getRomanValue(s.charAt(i));
13             if (pValue >= cValue) {
14                 value += pValue;
15             } else {
16                 value -= pValue;
17             }
18             pValue = cValue;
19         }
20         value += pValue; // we always add the last value to value. No exception.
21         return value;
22
23     }
24     public int getRomanValue(char c) {
25         switch(c) {
26             case ‘I‘: return 1;
27             case ‘V‘: return 5;
28             case ‘X‘: return 10;
29             case ‘L‘: return 50;
30             case ‘C‘: return 100;
31             case ‘D‘: return 500;
32             case ‘M‘: return 1000;
33             default: return 0;
34         }
35     }
36 }
时间: 2024-10-12 16:30:25

Integer to Roman & Roman to Integer的相关文章

LeetCode之Integer to Roman, Roman to Integer

罗马数字以前只接触过I到VIII,第一次听说罗马数字也可以表示大于8的数字.阿拉伯数字和罗马数字之间的转换最重的是了解罗马数字的规则.Wiki了一把,又参考了其它的文档,总结如下: 罗马数字规则: 1, 罗马数字共有7个,即I(1).V(5).X(10).L(50).C(100).D(500)和M(1000). 罗马数字中没有"0". 2, 重复次数:一个罗马数字最多重复3次. 3, 右加左减: 在较大的罗马数字的右边记上较小的罗马数字,表示大数字加小数字. 在较大的罗马数字的左边记上

Integer.valueof(String s)和Integer.parseInt(String s)的具体区别是什么?

Integer.valueof(String s)是将一个包装类是将一个实际值为数字的变量先转成string型再将它转成Integer型的包装类对象(相当于转成了int的对象)这样转完的对象就具有方法和属性了.而Integer.parseInt(String s)只是将是数字的字符串转成数字,注意他返回的是int型变量不具备方法和属性. 设有下面两个赋值语句:a=Integer.parseInt(“123”);b=Integer.valueOf(“123”).intValue();下述说法正确的

LeetCode12~14 Integer to Roman/Roman to Integer/Longest Common Prefix

一:Integer to Roman 题目: Given an integer, convert it to a roman numeral. Input is guaranteed to be within the range from 1 to 3999. 链接:https://leetcode.com/problems/integer-to-roman/ 分析:此题关键是确定罗马数字如何表示,比如4并不是IIII而是IV,9并不是VIIII而是IX, 通过不断的取出最高位和余下的得到结果

LeetCode 12-13:Integer to Roman&amp;&amp;Roman to Integer

Given an integer, convert it to a roman numeral. Input is guaranteed to be within the range from 1 to 3999. 1~9: {"I", "II", "III", "IV", "V", "VI", "VII", "VIII", "IX&qu

Integer.parseInt(String s) 和 Integer.valueOf(String s) 的区别

通过查看java.lang.Integer的源码可以发现, 它们最终调用的都是 /** * Parses the string argument as a signed integer in the radix * specified by the second argument. The characters in the string * must all be digits of the specified radix (as determined by * whether {@link

Integer a = 128, Integer b = 128, a==b ; Integer c = 1 , integer d =1 , c==d

Integer a = 128; Integer b = 128; System.out.println(a==b); Integer c = 1; Integer d = 1; System.out.println(c==d); 执行结果:false true 解释原因: 类似String一样 对于这样直接赋值的Integer 当值的范围在 [-128,127] 时候 会不生成新的对象 直接把缓存中的对对象拿来用 Integer a=128;Integer b=128 这样的话就是false了

integer与int区别以及integer.values()方法详解

声明:本文为博主转载文章,原文地址见文末. 知识点1:integer和int的区别 /* * int是java提供的8种原始数据类型之一.Java为每个原始类型提供了封装类,Integer是java为int提供的封装类.int的默认值为0, * 而Integer的默认值为null * ,即Integer可以区分出未赋值和值为0的区别,int则无法表达出未赋值的情况,例如,要想表达出没有参加考试和考试成绩为0的区别 * ,则只能使用Integer * .在JSP开发中,Integer的默认为nul

leetcode Roman to integer

题目: 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; Roma

leetCode 13. Roman to Integer 字符串

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. 补充:罗马数字 罗马数字共有七个,即I(1),V(5),X(10),L(50),C(100),D(500),M(1000).按照下面的规则可以表示任意正整数. 重复数次:一个罗马数字重复几次,就表示这个数的几倍. 右加左减:在一个较大的罗马数