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 enalapril 5mg for sale buy doxazosin 2mg pill lactulose cheap

    Reply
  2. ivermectin lotion

    Reply
  3. I as well as my pals happened to be reading through the good advice located on your web blog while all of the sudden I had a terrible suspicion I had not expressed respect to the web site owner for them. These women had been so stimulated to study all of them and have very much been having fun with these things. I appreciate you for simply being indeed thoughtful and then for finding variety of smart subject matter most people are really eager to know about. My personal honest apologies for not saying thanks to earlier.

    Reply
  4. metoprolol pills buy medrol 8 mg medrol for sale

    Reply
  5. brand priligy 30mg cheap misoprostol 200mcg orlistat 60mg tablet

    Reply
  6. I am commenting to let you be aware of what a cool encounter my cousin's girl developed browsing your webblog. She even learned such a lot of details, not to mention what it is like to possess a very effective teaching heart to make other individuals effortlessly comprehend a number of complex subject matter. You undoubtedly did more than her expectations. Thanks for giving the practical, dependable, educational and easy guidance on that topic to Lizeth.

    Reply
  7. I am also writing to make you understand of the notable encounter our girl enjoyed reading your blog. She learned plenty of things, most notably what it is like to possess a great coaching heart to have folks without problems completely grasp some tortuous topics. You really exceeded visitors' expectations. Thanks for churning out those helpful, safe, revealing and in addition fun tips on that topic to Tanya.

    Reply
  8. |There is no such thing as being perfectly fashionable. There is no perfect sense of fashion, just opinions. Next, you will appear to be pushing too hard when you attempt to be perfect. Celebrities such as Kate Moss also have flaws, so do not think you always have to be perfect.

    Reply
  9. I am only commenting to make you understand what a brilliant experience my friend's daughter experienced viewing your blog. She came to understand some issues, most notably what it's like to possess a wonderful helping spirit to let most people completely know specified very confusing topics. You actually did more than visitors' expectations. Many thanks for churning out the valuable, safe, explanatory and as well as unique tips on this topic to Janet.

    Reply
  10. norvasc usa omeprazole tablet prilosec pills

    Reply