题目描述
给你一个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要单独考虑
今日总结
- 对于算法这方面还有很多需要加强的地方,主要在于做题的思路方面,需要多加练习。
- C、Java的基础方面还很薄弱,需要加强,多加练习
- 中等难度的题目就一头雾水了[o(╥﹏╥)o],我可真菜
本文由 szr 创作,采用 知识共享署名4.0 国际许可协议进行许可
本站文章除注明转载/出处外,均为本站原创或翻译,转载前请务必署名
最后编辑时间为: Sep 14, 2021 at 04:46 pm
Thank you for all your valuable effort on this web site. My daughter enjoys conducting investigations and it is easy to understand why. A number of us notice all regarding the powerful medium you deliver simple tactics via this website and therefore attract contribution from other individuals on this subject and my simple princess has always been being taught a lot of things. Take pleasure in the rest of the year. You are always carrying out a stunning job.
cost asacol order mesalamine 800mg generic buy irbesartan 150mg generic
I would like to show appreciation to this writer for rescuing me from this type of instance. Just after exploring throughout the world wide web and getting tips that were not productive, I thought my entire life was well over. Living minus the strategies to the problems you've resolved through the article content is a serious case, as well as those which could have in a negative way damaged my career if I hadn't discovered your web site. Your primary training and kindness in handling all things was invaluable. I am not sure what I would have done if I hadn't come across such a thing like this. I am able to now relish my future. Thanks for your time very much for this skilled and result oriented help. I will not hesitate to refer your site to anyone who ought to have guidelines about this subject.
vardenafil 20mg pills cheap plaquenil 400mg order hydroxychloroquine 200mg for sale
buy altace online buy amaryl 1mg generic etoricoxib uk
I together with my friends were going through the great helpful hints found on the website while at once got a terrible suspicion I never thanked the blog owner for them. The people were definitely totally glad to see all of them and already have honestly been taking advantage of these things. I appreciate you for getting so thoughtful and also for pick out varieties of impressive guides most people are really needing to learn about. Our own sincere apologies for not expressing appreciation to sooner.
}{Before getting ready to throw out your beauty products, use every last ounce of it. For a products that come in tubes, think about using a squeezer that is made for toothpaste. To get the last drops of bottled products, store them at an angle, or even upside-down. It's also sometimes helpful to remove the cap completely. This can save you money.
buy levitra 20mg generic levitra 20mg ca purchase plaquenil pills
|Keep up with the latest styles. Styles are constantly changing, and you can find out what is new by looking at fashion magazines every now and then. They typically display news trends in style first.
I want to express thanks to this writer for bailing me out of this type of dilemma. As a result of surfing through the world wide web and meeting ways which were not helpful, I figured my life was gone. Living without the presence of answers to the difficulties you have solved by way of this posting is a serious case, and the ones that would have in a negative way affected my career if I had not discovered your web blog. Your personal capability and kindness in handling the whole thing was invaluable. I don't know what I would've done if I had not discovered such a thing like this. It's possible to at this time relish my future. Thanks very much for the expert and effective guide. I won't be reluctant to refer your site to any person who would need tips about this problem.