博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Reverse Integer--反转整数
阅读量:4106 次
发布时间:2019-05-25

本文共 1126 字,大约阅读时间需要 3 分钟。

问题:

Reverse digits of an integer.

Example1: x = 123, return 321
Example2: x = -123, return -321

Have you thought about this?

Here are some good questions to ask before coding. Bonus points for you if you have already thought through this!

If the integer's last digit is 0, what should the output be? ie, cases such as 10, 100.

Did you notice that the reversed integer might overflow? Assume the input is a 32-bit integer, then the reverse of 1000000003 overflows. How should you handle such cases?

Throw an exception? Good, but what if throwing an exception is not an option? You would then have to re-design the function (ie, add an extra parameter).

解答:

如果为负数,变为正数后处理,处理完后再变为负数。

处理过程:

采用队列,不断取余,将各位存入队列中,低位先入队列,高位后入队列。

从队列中先取低位,不断地*10 + 下一位, 直到队列为空。

如果结果为负数,说明溢出。

正负数判断输出。

代码:

class Solution {public:    int reverse(int x) {		if(x == 0)			return x;        int flag;		(x >0 ? flag = 1 : (flag = -1, x = -x));		int num = 0;		queue
st; while(x) { st.push(x % 10); x /= 10; } while(!st.empty()) { num = num*10 + st.front(); st.pop(); } if(num < 0) { exit(0); } num = num * flag; return num; }};

转载地址:http://dktsi.baihongyu.com/

你可能感兴趣的文章
网络通信时字节序转换原理与网络字节序、大端和小端模式
查看>>
对SendMessage与PostMessage的理解
查看>>
用PostMessage或SendMessage发送结构体指针
查看>>
[VC]SendMessage和PostMessage发送消息(不同进程传递字符串)
查看>>
使用J-Link ARM烧录FLASH
查看>>
驻波比
查看>>
解FPGA中的RAM、ROM和CAM;ROM、RAM、DRAM、SRAM、FLASH
查看>>
FPGA的基础知识
查看>>
银联POS规范总结
查看>>
NFC无线功能
查看>>
APN
查看>>
MDK中One ELF Section per Function选项功能探究
查看>>
基于PBOC的电子钱包消费交易过程
查看>>
基于PBOC的电子钱包的圈存过程
查看>>
PBOC/EMV之电子现金应用
查看>>
arm三大编译器的不同选择编译
查看>>
如何编写高效率稳定的单片机代码
查看>>
有趣的keil MDK细节
查看>>
Ubuntu手动挂载U盘的方法
查看>>
Ubuntu下提示U盘没有些权限的只能读不能写
查看>>