程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> 編程之美2.6——精確表達浮點數

編程之美2.6——精確表達浮點數

編輯:C++入門知識

問題:
用分數形式來表示小數,以達到精確的計算結果。
 
解答一:
用於小整數,將無限循環小數0.a1a2...an(b1b2...bm)分為非循環部分和循環部分。
X=((a1a2...an)*(10^m-1)+b1b2...bm)/((10^m-1)*10^n)
[cpp] 
#include <iostream> 
 
using namespace std; 
 
long long gcd(long long a, long long b) 

    if (a < b) 
    { 
        long long tmp = a; 
        a = b; 
        b = tmp; 
    } 
    int i, k=0; 
    while (b!=0) 
    { 
        if ((a&1) == 0) 
        { 
            if ((b&1) == 0) 
            { 
                // a,b均是偶數,f(a,b)=2*f(a>>1,b>>1) 
                a >>= 1; 
                b >>= 1; 
                k++; 
            } 
            else 
                // a為偶數,b為奇數,f(a,b)=f(a>>1,b) 
                a >>= 1; 
        } 
        else 
        { 
            if ((b&1) == 0) 
                // a為奇數,b為偶數,f(a,b)=f(a,b>>1) 
                b >>= 1; 
            else 
                // a,b均是奇數,f(a,b)=f(a-b,b) 
                a = a-b; 
        } 
        if (a < b) 
        { 
            long long tmp = a; 
            a = b; 
            b = tmp; 
        } 
    } 
    return a << k; 

 
int main() 

    long long a=0, b=0, c=0; 
    // 整數部分c,非循環小數a,循環小數b 
    scanf("%d.%d(%d)",&c, &a, &b); 
    if (a==0 && b==0) 
        cout << c; 
    else 
    { 
        // 分子up,分母down 
        long long up = c; 
        long long down = 1; 
        long long ta = a; 
        while (ta) 
        { 
            down *= 10; 
            ta /= 10; 
        } 
        up = c*down+a; 
        if (b!=0) 
        { 
            long long wb = 1; 
            long long tb = b; 
            while (tb) 
            { 
                wb *= 10; 
                tb /= 10; 
            } 
            up = up*(wb-1)+b; 
            down = down*(wb-1); 
        } 
        long long fac = gcd(up, down); 
        cout << up/fac << "/" << down/fac << endl; 
    } 

 
解答二:
用於大整數,定義了大整數類型,以及對應的加減乘除、比較移位運算。
 
[cpp] 
#include <iostream> 
#include <cstring> 
#include <string> 
using namespace std; 
 
// 大整數類型 
#define MAXLEN 1000 
struct HP {int len, s[MAXLEN];}; 
 
void PrintHP(HP x)  

    for (int i=x.len; i>=1; i--) 
        cout << x.s[i]; 

 
// 字符串轉大整數 
void Str2HP(const char *s, HP &x) 

    x.len = strlen(s); 
    for (int i=1; i<=x.len; i++) 
        x.s[i] = s[x.len-i] - '0'; 
    if (x.len == 0) 
    { 
        x.len = 1; 
        x.s[1] = 0; 
    } 

 
// 大整數的加法 
void Plus(const HP a, const HP b, HP &c) 

    int i; c.s[1] = 0; 
    // 大整數a,b的加法操作和結果c的進位操作 
    for (i=1; i<=a.len || i<=b.len || c.s[i]; i++) 
    { 
        if (i <= a.len) c.s[i] += a.s[i]; 
        if (i <= b.len) c.s[i] += b.s[i]; 
        c.s[i+1] = c.s[i]/10; c.s[i] %= 10; 
    } 
    // 退出循環到原因是c.s[i]==0,所以取前一位 
    c.len = i-1;  
    if (c.len == 0) c.len = 1; 

 
// 大整數的減法 
void Subtract(const HP a, const HP b, HP &c) 

    int i, j; 
    for (i=1,j=0; i<=a.len; i++) 
    { 
        // j表示是否要對高位進行借位 
        c.s[i] = a.s[i] - j; 
        if (i <= b.len) c.s[i] -= b.s[i]; 
        if (c.s[i] < 0)  
        { 
            // 向高位借位,補10 
            j = 1; 
            c.s[i] += 10; 
        } 
        else j = 0; 
    } 
    c.len = a.len; 
    while (c.len > 1 && !c.s[c.len]) c.len--; 

 
// 大整數的比較 
int HPCompare(const HP &x, const HP &y) 

    if (x.len > y.len) return 1; 
    if (x.len < y.len) return -1; 
    int i = x.len; 
    while (i>1 && (x.s[i]==y.s[i])) i--; 
    return x.s[i] - y.s[i]; 

 
// 大整數的乘法 
void Multi(const HP a, const HP b, HP &c) 

    int i, j; 
    // 對乘法結果賦初值,以方便之後的+=運算 
    c.len = a.len + b.len; 
    for (i=1; i<=c.len; i++) c.s[i] = 0; 
    for (i=1; i<=a.len; i++) 
        for (j=1; j<=b.len; j++) 
            c.s[i+j-1] += a.s[i]*b.s[j]; 
    // 運算結果進位 
    for (i=1; i<c.len; i++) {c.s[i+1] += c.s[i]/10; c.s[i] %= 10;} 
    // 最高位繼續進位 
    while (c.s[i]) {c.s[i+1] = c.s[i]/10; c.s[i] %= 10; i++;} 
    // 確保最高位不為0 
    while (i>1 && !c.s[i]) i--; 
    c.len = i; 

 
// 大整數的除法 
void Divide(const HP a, const HP b, HP &c, HP &d) 

    int i, j; 
    // 用余數d存被除數a的前i位數據,用來多次減去除數b,以得到商c 
    d.len = 1; d.s[1] = 0; 
    for (i=a.len; i>0; i--) 
    { 
        if (!(d.len == 1 && d.s[1] == 0)) 
        { 
            // i沒移一位,余數d也移位 
            for (j=d.len; j>0; j--) 
                d.s[j+1] = d.s[j]; 
            d.len++; 
        } 
        d.s[1] = a.s[i]; 
        c.s[i] = 0; 
        // 余數d大於除數b時,才可以進行減操作 
        while ((j=HPCompare(d,b)) >= 0) 
        { 
            Subtract(d, b, d); 
            c.s[i]++; 
            if (j == 0) break; 
        } 
    } 
    c.len = a.len; 
    while (c.len > 1 && c.s[c.len] == 0) 
        c.len--; 

// 十進位右移 
void RightShift(HP &x, int k) 

    for (int i=1; i<=x.len-k; i++) 
        x.s[i] = x.s[i+k]; 
    x.len -= k; 
    if(x.len <= 0) 
    { 
        x.len = 1; 
        x.s[1] = 0; 
    } 

// 十進位左移 
void LeftShift(HP &x, int k) 

    int i; 
    for (i=x.len; i>=1; i--) 
        x.s[i+k] = x.s[i]; 
    for (i=k; i>=1; i--) 
        x.s[i] = 0; 
    x.len += k; 

// 求大整數的最大公約數 
void GCD(HP a, HP b, HP &c) 

    if (b.len == 1 && b.s[1] == 0) 
    { 
        c.len = a.len; 
        memcpy(c.s, a.s, (a.len+1)*sizeof(int)); 
    } 
    else 
    { 
        HP m, n; 
        Divide(a, b, m, n); 
        GCD(b, n, c); 
    } 

 
int main() 

    string str; 
    string strc, stra, strb; 
    cin >> str; 
    int posc = str.find('.'); 
    int posa = str.find('('); 
    int posb = str.find(')'); 
    strc = str.substr(0, posc); 
    if (posc < 0) 
        cout << strc; 
    else 
    {    
        HP a, b, c; 
        HP tmp; tmp.len = 1; tmp.s[1] = 1; 
        // 整數部分 
        Str2HP(strc.c_str(), c); 
        stra = str.substr(posc+1, posa-posc-1); 
        // 非循環部分 
        Str2HP(stra.c_str(), a); 
        // up分子,down分母 
        HP up = c, down = tmp; 
        // 乘以10^|a| 
        LeftShift(down, stra.size()); 
        LeftShift(up, stra.size()); 
        Plus(up, a, up); 
        if (posa >= 0) 
        { 
            strb = str.substr(posa+1, posb-posa-1); 
            // 循環部分 
            Str2HP(strb.c_str(), b); 
            HP m = tmp; 
            LeftShift(m, strb.size()); 
            Subtract(m, tmp, m); 
            // 乘以10^(|b|-1) 
            Multi(up, m, up); 
            Plus(up, b, up); 
            Multi(down, m, down); 
        } 
        // 求分子分母的最大公約數 
        GCD(down, up, tmp); 
        HP h; 
        Divide(down, tmp, down, h); 
        Divide(up, tmp, up, h); 
        PrintHP(up); cout << "/"; 
        PrintHP(down); cout << endl; 
    } 

作者:linyunzju
 


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved