由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - Floating number question
相关主题
这个条件语句如何写?INTEGER搜索求建议
能有人详细讲一下这两道google的面试题吗?huaren大妈断言:湾区软件公司的工资水平撑不了几年了 (转载)
几道面试题:memory, sort, 等浮点数运算等于0的问题
紧急求助,C语言面试题double's equality
阅读Robert Sedgewick的"algorithms in C"的感受如何 replace这里的第二个x
有谁看过youtube上的算法课吗?如何在VC6+intel C里实现long double?
一道算法题 (转载)Re: 从哥德巴赫猜想谈民主 (转载)
看了那个招聘的帖子,自觉需要把 atoi温习一下。赶紧的Mathematics in Babylon
相关话题的讨论汇总
话题: floating话题: number话题: flt话题: epsilon话题: radix
进入Programming版参与讨论
1 (共1页)
j****i
发帖数: 305
1
How to find the minimum number x such that 1 + x > 1 in floating number
system in c++?
S**I
发帖数: 15689
2
#include
FLT_EPSILON
DBL_EPSILON
LDBL_EPSILON

【在 j****i 的大作中提到】
: How to find the minimum number x such that 1 + x > 1 in floating number
: system in c++?

j****i
发帖数: 305
3
Instead of using macros, can we write code to get this, for example, by
manipulating bits? I'm just wondering.
s

【在 S**I 的大作中提到】
: #include
: FLT_EPSILON
: DBL_EPSILON
: LDBL_EPSILON

l******e
发帖数: 12192
4
numeric_limits::epsilon()

【在 j****i 的大作中提到】
: Instead of using macros, can we write code to get this, for example, by
: manipulating bits? I'm just wondering.
: s

S**I
发帖数: 15689
5
double getDoubleEpsilon(){
double a = 1;
while(1.0 + a/FLT_RADIX != 1.0)
a /= FLT_RADIX;
return a;
}

【在 j****i 的大作中提到】
: Instead of using macros, can we write code to get this, for example, by
: manipulating bits? I'm just wondering.
: s

1 (共1页)
进入Programming版参与讨论
相关主题
Mathematics in Babylon阅读Robert Sedgewick的"algorithms in C"的感受
A Chinese Student Was Shot to Death有谁看过youtube上的算法课吗?
【转载】科普哥德巴赫猜想以及陈景润学术地位一道算法题 (转载)
数学猜想看了那个招聘的帖子,自觉需要把 atoi温习一下。赶紧的
这个条件语句如何写?INTEGER搜索求建议
能有人详细讲一下这两道google的面试题吗?huaren大妈断言:湾区软件公司的工资水平撑不了几年了 (转载)
几道面试题:memory, sort, 等浮点数运算等于0的问题
紧急求助,C语言面试题double's equality
相关话题的讨论汇总
话题: floating话题: number话题: flt话题: epsilon话题: radix