题目描述
给你一个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
I like the valuable information you provide
in your articles. I will bookmark your weblog and check again here regularly.
I'm quite sure I will learn lots of new stuff right
here! Good luck for the next!
bs2best.at
Blacksprut
bsme.at
кайт школа хургада
I want to to thank you for this good read!! I absolutely enjoyed every bit of it. I have you saved as a favorite to check out new things you
additional resources
Affordable virtual SMS verification numbers
Как выбрать платформу, которая не подведет, не обманет и принесет максимум прибыли? Мы проанализировали десятки криптобирж, сравнили их комиссии, безопасность, удобство и поддержку пользователей, чтобы вы могли торговать с уверенностью.
Сколько вы уже потеряли из-за неправильного выбора биржи? Пора это исправить! Узнайте, какие платформы возглавляют рейтинг в 2025 году и почему именно они стали фаворитами миллионов трейдеров по всему миру. рейтинг бирж криптовалют с выгодным стейкингом
I think the admin of this website is in fact working hard in favor of his website, since here every stuff is quality based material.
leoncycle.com
Welcome to Our Premier Limo Services in Seattle
Experience the epitome of luxury and convenience with our top-tier limo services in Seattle. We specialize in providing exceptional transportation solutions tailored to your unique needs.
Prices for Limo Van Service in Seattle
Our Limo Van Service in Seattle is designed to offer a blend of comfort and affordability. Whether you need a ride to Sea-Tac Airport, a night out on the town, or a corporate event, our pricing structure ensures you get the best value for your money.
Hourly Rates : Our limo vans are available at competitive hourly rates, perfect for extended events or tours.Package Deals : We offer special package deals for weddings, proms, and other significant events, making sure your day is as stress-free as possible.Corporate Rates : For our corporate clients, we provide special rates and customized billing options to meet your business needs.Premier Limo Services
At our Premier Limo Services, we pride ourselves on delivering an unparalleled experience. Our fleet includes a variety of luxury vehicles, from sleek sedans to spacious limo vans, all equipped with modern amenities to ensure a comfortable ride.
Professional Chauffeurs : Our highly trained and courteous chauffeurs are committed to providing a smooth and safe journey.24/7 Availability : We are available around the clock to cater to your transportation needs, ensuring you never miss a moment.Personalized Service : We understand that every client has unique requirements. Our team works closely with you to tailor a service that meets your specific needs.Mint Mail Preference
For our valued clients, we offer a Mint Mail Preference program. By subscribing to our newsletter, you'll receive exclusive offers, special discounts, and updates on new services and vehicles. Stay connected and enjoy the perks of being a part of our premier clientele.
Exclusive Offers : Be the first to know about our special promotions and deals.Special Discounts : Enjoy exclusive discounts on our limo van services and other premium offerings.Updates and News : Stay informed about our latest services, vehicle additions, and company news.Choose our Premier Limo Services for a journey that combines elegance, reliability, and exceptional customer service. Book your ride today and experience the difference.