Middle-题目10:12. Integer to Roman

题目原文:
Given an integer, convert it to a roman numeral.
Input is guaranteed to be within the range from 1 to 3999.

题目大意:
把1-3999的整数转换成对应的罗马数字。
题目分析:
使用switch-case加递归,考虑所有特殊情况(遇到5,10,9等数字的时候)。
源码:(language:java)

public class Solution {
    public String intToRoman(int num) {
        if(num >= 1 && num <= 9) {
            switch (num) {
                case 1:{return "I";}
                case 2:case 3:{return "I"+intToRoman(num-1);}
                case 4:case 9:{return "I"+intToRoman(num+1);}
                case 5:{return "V";}
                default:{return "V"+intToRoman(num-5);}//6,7,8
            }
        }
        else if (num >= 10 && num <= 99) {
            switch (num) {
                case 10:{return "X";}
                case 50:{return "L";}
                case 40:case 90:{return "X"+intToRoman(num+10);}
                default: {
                    if(num > 90)
                        return "X"+intToRoman(num+10);
                    else if(num > 50)
                        return "L"+intToRoman(num-50);
                    else if(num > 40 && num < 50)  //XL
                        return "X"+intToRoman(num+10);
                    else 
                        return "X"+intToRoman(num-10);
                }
            }
        }
        else if (num >= 100 && num <= 999) {
            switch (num) {
                case 100:{return "C";}
                case 500:{return "D";}
                case 400:case 900:{return "C"+intToRoman(num+100);}
                default:{
                    if(num > 900)
                        return "C"+intToRoman(num+100);
                    else if(num > 500)
                        return "D"+intToRoman(num-500);
                    else if(num > 400 && num < 500) 
                        return "C"+intToRoman(num+100);
                    else 
                        return "C"+intToRoman(num-100);
                }
            }
        }
        else { //1000~3999
            switch (num) {
                case 1000:{return "M";}
                default:{return "M"+intToRoman(num-1000);}
            }
        }       
    }
}

成绩:
11ms,beats24.85%,众数8ms,23.08%
Cmershen的碎碎念:
代码很长也很繁琐,但感觉有一些情况是可以合并的,这样应该可以节约几ms。
此外注意,因为switch-case的每个分支都是return,故省略了break,但在其他情况下写switch一定不要忘记break。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值