本文介绍了我如何在c ++中获得sqrt到biginteger数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我如何在c ++中获得sqrt()到biginteger数字

how i get sqrt() to biginteger number in c++

推荐答案



using namespace System;
using namespace System::Numerics;
...
        static BigInteger SQRT(BigInteger y)
        {
            if (y <= BigInteger::Zero)
            {
                if (y != BigInteger::Zero)
                {
                    return BigInteger::Negate(BigInteger::One);
                }
                return BigInteger::Zero;
            }

            /* select a good starting value using binary logarithms: */
            BigInteger x_old(4);
            BigInteger testy(16);   // testy = x_old ^ 2

            while(true)
            {
                if ( y <= testy)
                {
                    break;
                }
                testy <<= 2L;
                x_old <<= 1L;
            }
            /* x_old >= sqrt(y) */
            /* use the Babylonian method to arrive at the integer square root: */
            BigInteger x_new;
            while(true)
            {
                x_new = (BigInteger::Add( (y / x_old), x_old ) ) / 2L;
                if (x_old <= x_new)
                {
                    break;
                }
                x_old = x_new;
            }
            return x_old;
        }



希望有所帮助。


Hope that helps.


这篇关于我如何在c ++中获得sqrt到biginteger数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-21 09:53