LeetCode刷题1

in 力扣 with 1634 comments

题目描述

给你一个32位的有符号整数x,返回将x中的数字部分反转后的结果。
如果反转后整数超过32位的有符号整数的范围 [−2^31,2^31−1],就返回 0。
假设环境不允许存储64位整数(有符号或无符号)。


思路

1.数字反转
利用%和/,将x的最后一位数字提取出来,放到返回数字rev的最前面,由于是10进制整数,所以只要每次操作时*10进一位。

int digit = x % 10;// 提取最后一位数字
x /= 10;// x去除最后一位
rev = rev*10 + digit;// rev初始值为0,赋值给最终的数字

2.整数反转的范围限制

题目要求x是32位无符号整数,环境不允许存储64位整数
反转后整数超过32位的有符号整数的范围就返回0
官方思路
-2^31 <= rev * 10 + digit <= 2^31-1
不等式不成立则返回0
然后一堆花里胡哨数学操作ToT
推导成了
(-2^31)/10 <= rev <= (2^31-1)/10
写的乱主要是不会传图,划掉

//最终代码,这里INT_MIN和INT_MAX应该是c语言中定义的int型的最大最小值
int reverse(int x) {
    int rev = 0;
    while (x != 0) {
        if (rev < INT_MIN / 10 || rev > INT_MAX / 10) {
            return 0;
        }
        int digit = x % 10;
        x /= 10;
        rev = rev * 10 + digit;
    }
    return rev;
}

我的理解
在数字转化的过程中,只要x不为0,rev就会比原来的值大10倍+,即rev = rev*10 + digit,所以为了避免超出范围,只要将rev和极值的1/10进行比较(在x!=0的前提下)。
假如还需要缩小范围,可以1、极值/100;2、条件改为while(x/10 !=0),不过该情况下对于x==0要单独考虑

今日总结

  1. 对于算法这方面还有很多需要加强的地方,主要在于做题的思路方面,需要多加练习。
  2. C、Java的基础方面还很薄弱,需要加强,多加练习
  3. 中等难度的题目就一头雾水了[o(╥﹏╥)o],我可真菜
Responses
  1. buy generic nifedipine for sale order aceon online allegra brand

    Reply
  2. I precisely desired to thank you very much yet again. I am not sure what I might have made to happen without the tricks documented by you regarding this theme. It actually was an absolute frightful concern for me, but taking a look at your professional manner you resolved the issue took me to jump for contentment. I'm just thankful for the assistance and thus have high hopes you comprehend what an amazing job that you are accomplishing instructing most people through your blog post. Most likely you haven't met any of us.

    Reply
  3. buy montelukast cheap order generic singulair 10mg order dapsone 100mg without prescription

    Reply
  4. Thank you for your whole efforts on this web page. Kim delights in going through research and it's obvious why. A lot of people notice all of the compelling means you produce both useful and interesting guidelines via your web site and therefore welcome response from people on that issue while our favorite child is now learning a great deal. Take pleasure in the rest of the new year. You're performing a fabulous job.

    Reply
  5. I simply needed to appreciate you again. I'm not certain the things I might have taken care of without these strategies contributed by you on my theme. It was before the frustrating problem for me, nevertheless observing the very specialised way you managed that made me to weep over gladness. I am just thankful for your help and in addition trust you find out what a powerful job you're undertaking instructing others with the aid of a site. I'm certain you've never got to know any of us.

    Reply
  6. I am just commenting to let you know of the terrific discovery my wife's child went through viewing your site. She came to find too many issues, not to mention how it is like to possess a great teaching heart to make other people without hassle comprehend some hard to do topics. You actually did more than our expected results. Many thanks for displaying these great, trusted, educational and even unique tips on the topic to Evelyn.

    Reply
  7. My husband and i got absolutely more than happy when Michael managed to deal with his analysis via the precious recommendations he made when using the weblog. It is now and again perplexing just to be releasing guides that some others could have been selling. And we also fully understand we have the blog owner to thank because of that. These explanations you made, the simple website navigation, the friendships you aid to foster - it's most fantastic, and it's leading our son in addition to the family recognize that the article is fun, and that's unbelievably mandatory. Thank you for all the pieces!

    Reply
  8. buy naprosyn 500mg online cefdinir 300mg for sale prevacid 30mg brand

    Reply
  9. cost coreg cenforce 50mg uk chloroquine 250mg cheap

    Reply
  10. I together with my guys have already been following the good things located on your web page and so all of the sudden I got a terrible suspicion I never thanked the website owner for those techniques. Those people were definitely for that reason stimulated to learn them and now have truly been using those things. Many thanks for simply being simply thoughtful and for picking out certain good subject areas millions of individuals are really eager to be informed on. My very own sincere regret for not expressing gratitude to earlier.

    Reply