计算双精度的分子和分母的最准确方法

时间:2014-01-18 23:38:17

标签: c++ floating-point double rational-numbers

我已经实现了class NaturalNum来表示自然数量的“无限”大小(最多4GB)。

我还实现了class RationalNum来表示具有无限精度的有理数。它存储有理数的分子和分母,两者都是NaturalNum个实例,并在执行用户发出的任何算术运算时依赖它们。

精度“在一定程度上下降”的唯一地方是打印时,因为有一个限制(由用户提供)到十进制(或非十进制)点之后出现的位数。 / p>

我的问题涉及class RationalNum的一个构造函数。即,构造函数采用double值,并计算相应的分子和分母。

我的代码如下,我想知道是否有人看到更准确的计算方法:

RationalNum::RationalNum(double value)
{
    if (value == value+1)
        throw "Infinite Value";
    if (value != value)
        throw "Undefined Value";

    m_sign        = false;
    m_numerator   = 0;
    m_denominator = 1;

    if (value < 0)
    {
        m_sign = true;
        value  = -value;
    }

    // Here is the actual computation
    while (value > 0)
    {
        unsigned int floor = (unsigned int)value;
        value         -= floor;
        m_numerator   += floor;
        value         *= 2;
        m_numerator   *= 2;
        m_denominator *= 2;
    }

    NaturalNum gcd = GCD(m_numerator,m_denominator);
    m_numerator   /= gcd;
    m_denominator /= gcd;
}

注意:以'm_'开头的变量是成员变量。

由于

2 个答案:

答案 0 :(得分:3)

标准库包含一个用于获取有效数和指数的函数frexp

只需将有效数乘以得到小数点前的所有位并设置适当的分母。只是不要忘记有效数被归一化为介于0.5和1之间(我认为1到2之间更自然,但无论如何)并且它有IEEE有效位的53个有效位(没有实际使用的平台会使用不同的浮动点格式)。

答案 1 :(得分:1)

我对实际计算的数学没有100%的自信,因为我还没有真正检查它,但我认为以下方法无需使用GCD功能,这可能带来一些不必要的运行时间。

这是我提出的课程。我没有完全测试它,但是我产生了几十亿随机双打并且断言永远不会被解雇,所以我对其可用性有合理的信心,但我仍然会测试INT64_MAX周围的边缘情况a再多一点。

如果我没弄错的话,这个算法的运行时间复杂度与输入的位大小成线性关系。

#include <iostream>
#include <cmath>
#include <cassert>
#include <limits>

class Real;

namespace std {
    inline bool isnan(const Real& r);
    inline bool isinf(const Real& r);
}

class Real {
public:
    Real(double val)
        : _val(val)
    {
        if (std::isnan(val)) { return; }
        if (std::isinf(val)) { return; }

        double d;

        if (modf(val, &d) == 0) {
            // already a whole number
            _num = val;
            _den = 1.0;
            return;
        }

        int exponent;
        double significand = frexp(val, &exponent); // val = significand * 2^exponent
        double numerator = val;
        double denominator = 1;

        // 0.5 <= significand < 1.0
        // significand is a fraction, multiply it by two until it's a whole number
        // subtract exponent appropriately to maintain val = significand * 2^exponent
        do {
            significand *= 2;
            --exponent;
            assert(std::ldexp(significand, exponent) == val);
        } while (modf(significand, &d) != 0);

        assert(exponent <= 0);  

        // significand is now a whole number
        _num = significand;
        _den = 1.0 / std::ldexp(1.0, exponent);

        assert(_val == _num / _den);
    }

    friend std::ostream& operator<<(std::ostream &os, const Real& rhs);
    friend bool std::isnan(const Real& r);
    friend bool std::isinf(const Real& r);

private:
    double _val = 0;
    double _num = 0;
    double _den = 0;
};

std::ostream& operator<<(std::ostream &os, const Real& rhs) {
    if (std::isnan(rhs) || std::isinf(rhs)) {
        return os << rhs._val;
    }
    if (rhs._den == 1.0) {
        return os << rhs._num;
    }
    return os << rhs._num << " / " << rhs._den;
}

namespace std {
    inline bool isnan(const Real& r) { return std::isnan(r._val); }
    inline bool isinf(const Real& r) { return std::isinf(r._val); }
}

#include <iomanip>

int main () {

    #define PRINT_REAL(num) \
        std::cout << std::setprecision(100) << #num << " = " << num << " = " << Real(num) << std::endl

    PRINT_REAL(1.5);
    PRINT_REAL(123.875);
    PRINT_REAL(0.125);

    // double precision issues
    PRINT_REAL(-10000000000000023.219238745);
    PRINT_REAL(-100000000000000000000000000000000000000000.5);

    return 0;
}

再多看一下你的代码,你的无限值测试至少存在问题。请注意以下程序:

#include <numeric>
#include <cassert>
#include <cmath>

int main() {
    {
        double d = std::numeric_limits<double>::max(); // about 1.7976931348623e+308

        assert(!std::isnan(d));
        assert(!std::isinf(d));

        // assert(d != d + 1); // fires
    }

    {
        double d = std::ldexp(1.0, 500); // 2 ^ 700
        assert(!std::isnan(d));
        assert(!std::isinf(d));

        // assert(d != d + 1); // fires
    }
}

除此之外,如果您的GCD功能不支持双打,那么您将根据可以作为双精度导入的值来限制自己。尝试任意数字&gt; INT64_MAX和GCD功能可能无效。