LeetCode刷题1

in 力扣 with 1633 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. Thanks a lot for providing individuals with an exceptionally special possiblity to check tips from this site. It is always very good and also stuffed with a lot of fun for me personally and my office co-workers to visit the blog nearly 3 times every week to read through the fresh issues you will have. And lastly, I am also always impressed with your special strategies you give. Some two areas in this posting are unequivocally the finest we've ever had.

    Reply
  2. I am glad for commenting to let you know of the brilliant discovery my wife's child experienced browsing the blog. She discovered some things, not to mention what it's like to possess a marvelous giving mood to get men and women with no trouble comprehend some extremely tough subject matter. You actually did more than readers' expectations. Thanks for offering these interesting, dependable, informative not to mention cool guidance on the topic to Ethel.

    Reply
  3. I enjoy you because of your entire labor on this website. Kate takes pleasure in getting into internet research and it's really simple to grasp why. Almost all hear all regarding the lively means you make useful steps on your web blog and as well as cause participation from some other people on the subject matter so our girl is without a doubt learning a whole lot. Have fun with the remaining portion of the year. You're the one carrying out a great job.

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

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

    Reply
  6. I wish to express my gratitude for your kind-heartedness giving support to folks that have the need for guidance on your idea. Your very own commitment to passing the message throughout came to be especially helpful and has allowed guys and women just like me to attain their endeavors. Your own informative tips and hints entails this much to me and far more to my office workers. Thanks a lot; from all of us.

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

    Reply
  8. Read reviews and was a little hesitant since I had already inputted my order. or perhaps but thank god, I had no issues. particularly the received item in a timely matter, they are in new condition. direction so happy I made the purchase. Will be definitely be purchasing again.
    authentic cheap jordans https://www.cheapauthenticjordans.com/

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

    Reply
  10. order tadalafil 40mg pills cialis super active ed pills no prescription

    Reply