由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 问到题:reverse an integer
相关主题
请问如何安全地reverse 一个integer关于随机的题目
请教一道Leetcode 题, 多谢C++ Q79: What is the size of a pointer? and why?
请教leetcode一道题find the cube root of a number
float取小数部分a question about bits operation
问两道bloomberg的题目这题怎么做?
如何判断是否会溢出reverse an integer 怎么判断是否 overflow 来着
一道Facebook题如何避免溢出问个简单的atoi的问题
LC第七题reverse int的测试例子有问题?大家碰到过这题吗?reverse float/double number
相关话题的讨论汇总
话题: reverse话题: integer话题: 问到话题: result话题: int
进入JobHunting版参与讨论
1 (共1页)
c*******t
发帖数: 1095
1
function:
简单点
比如输入123,输出321
输入100,输出1
如何简单判断reverse以后的数溢出了没有?比如integer是1byte的,那范围就是-128~
+127,如何判断reverse 126 是溢出的?
y*******o
发帖数: 6632
2
I would use a float number to represent the result
float result=0.0;
at the end
if(result>MAX_INT){
throw new OverflowException("");
}
return (int)result;

128~

【在 c*******t 的大作中提到】
: function:
: 简单点
: 比如输入123,输出321
: 输入100,输出1
: 如何简单判断reverse以后的数溢出了没有?比如integer是1byte的,那范围就是-128~
: +127,如何判断reverse 126 是溢出的?
: 谢

1 (共1页)
进入JobHunting版参与讨论
相关主题
大家碰到过这题吗?reverse float/double number问两道bloomberg的题目
问到题如何判断是否会溢出
问到题一道Facebook题如何避免溢出
想成为嵌入式程序员应知道的0x10个基本问题 zzLC第七题reverse int的测试例子有问题?
请问如何安全地reverse 一个integer关于随机的题目
请教一道Leetcode 题, 多谢C++ Q79: What is the size of a pointer? and why?
请教leetcode一道题find the cube root of a number
float取小数部分a question about bits operation
相关话题的讨论汇总
话题: reverse话题: integer话题: 问到话题: result话题: int