LeetCode刷题2

in 力扣 with 121 comments

题目描述

罗马数字转整数,包含以下七种字符: I, V, X, L,C,D 和 M。分别对应1,5,10,50,100,500,1000。

给定一个罗马数字,将其转换成整数。输入确保在 1 到 3999 的范围内。

思路
将每一个对应罗马数字转换成数字,一个一个加起来。当小数字在大数字前时,需要减法。
eg:罗马数字IV,就是V-I,即5-1=4,其他正常叠加

难点

数字转换
方法
使用数组,给每一个罗马数字对应下标,每个下标在数组中对应值。
int romanToInt(char * s){
    int num[26];// 优点在于利用ASCII码,数组空间尽可能小,也更能理解
    num['I' - 'A'] = 1;
    num['V' - 'A'] = 5;
    num['X' - 'A'] = 10;
    num['L' - 'A'] = 50;
    num['C' - 'A'] = 100;
    num['D' - 'A'] = 500;
    num['M' - 'A'] = 1000;
    int result = 0, len = strlen(s);
    for(int i = 0; i < len; i++){
        int value = num[s[i] - 'A'];
        if(i < len-1 && value < num[s[i+1] - 'A']){
            result -= value;
        }else{
            result += value;
        }
    }
    return result;
}

java版本(题解中一个很好的思路)

该方法避免了在数字相加时进行判断,直接++
class Solution {
    public int romanToInt(String s) {
        // 优点在于将6种较为特殊的情况提前转化,在switch中进行判断即可,避免了小数字在大数字前的判断,且减少了switch语句判断的次数。
        // 缺点在于当特例足够多时,会变得臃肿,不及+-判断精简
        s = s.replace("IV","a");
        s = s.replace("IX","b");
        s = s.replace("XL","c");
        s = s.replace("XC","d");
        s = s.replace("CD","e");
        s = s.replace("CM","f");

        int result = 0;
        for(int i = 0;i < s.length(); i++){
            result += getValue(s.charAt(i));
        }
        return result;
    }

    private int getValue(char c) {
        switch(c) {
            case 'I' : return 1;
            case 'V' : return 5;
            case 'X' : return 10;
            case 'L' : return 50;
            case 'C' : return 100;
            case 'D' : return 500;
            case 'M' : return 1000;
            case 'a' : return 4;
            case 'b' : return 9;
            case 'c' : return 40;
            case 'd' : return 90;
            case 'e' : return 400;
            case 'f' : return 900;
        }
        return 0;
    }
}

吐槽一下个人代码问题

  1. 习惯于return 0,导致运行结果不符合预期,多return了一个0
  2. 大小写问题,V和v的问题,导致ASCII码变化,计算结果不符合预期
Responses
  1. I wanted to send you that little note to finally say thanks the moment again over the superb suggestions you have documented on this page. It was certainly generous of you to grant unhampered just what a number of people would've distributed as an e-book in making some profit for their own end, specifically since you could have tried it in the event you considered necessary. These suggestions as well acted like a good way to comprehend some people have similar zeal similar to my very own to know the truth very much more related to this problem. I am sure there are lots of more pleasant times up front for individuals that go through your site.

    Reply
  2. Read reviews and was a little hesitant since I had already inputted my order. potentially but thank god, I had no issues. including received item in a timely matter, they are in new condition. no matter what so happy I made the purchase. Will be definitely be purchasing again.
    jordans for cheap https://www.realjordansshoes.com/

    Reply
  3. Needed to put you one bit of remark to help say thank you as before for those marvelous solutions you've featured in this case. It's so shockingly open-handed with people like you to present openly exactly what a number of people could have supplied as an ebook to help make some dough on their own, principally considering that you might well have done it in the event you wanted. These creative ideas also acted like the good way to understand that most people have the same desire just as my very own to figure out more and more with regard to this problem. I believe there are some more enjoyable times up front for people who look over your site.

    Reply
  4. Read reviews and was a little hesitant since I had already inputted my order. aka but thank god, I had no issues. including received item in a timely matter, they are in new condition. blue jays so happy I made the purchase. Will be definitely be purchasing again.
    louis vuitton outlet https://www.louisvuittonsoutletonline.com/

    Reply
  5. Read reviews and was a little hesitant since I had already inputted my order. or sometimes but thank god, I had no issues. for example the received item in a timely matter, they are in new condition. either way so happy I made the purchase. Will be definitely be purchasing again.
    original louis vuittons outlet https://www.louisvuittonsoutletonline.com/

    Reply
  6. Read reviews and was a little hesitant since I had already inputted my order. or alternatively but thank god, I had no issues. similar to the received item in a timely matter, they are in new condition. no matter what so happy I made the purchase. Will be definitely be purchasing again.
    cheap real jordans https://www.cheapauthenticjordanshoes.com/

    Reply
  7. I simply needed to appreciate you again. I do not know the things that I could possibly have done without the actual creative ideas revealed by you about that theme. It seemed to be a difficult circumstance in my view, but understanding a new specialized technique you dealt with that made me to weep for happiness. Now i am grateful for your work and have high hopes you really know what an amazing job you are doing teaching other individuals through your website. More than likely you've never come across any of us.

    Reply
  8. My wife and i got so comfortable that Emmanuel managed to do his survey while using the precious recommendations he received while using the site. It is now and again perplexing to just always be handing out helpful tips that some people might have been trying to sell. And we all fully understand we now have the website owner to thank because of that. The illustrations you have made, the easy blog navigation, the friendships you will make it possible to foster - it's all awesome, and it's letting our son and the family do think that situation is amusing, which is quite indispensable. Thanks for all the pieces!

    Reply
  9. tadalafil otc buy tadalafil 20mg men's ed pills

    Reply
  10. Read reviews and was a little hesitant since I had already inputted my order. otherwise but thank god, I had no issues. such as the received item in a timely matter, they are in new condition. manner in which so happy I made the purchase. Will be definitely be purchasing again.
    cheap louis vuitton online https://www.louisvuittonsoutlet.com/

    Reply