English 中文(简体)
如何加和减字符数?
原标题:How to sum and subtract char* numbers?

我的问题是我不知道如何计算巨大的数字(例如“172839023492), 或者“17283902349234792834798237494”, 或者“-172839023492823479283434494” ) 。所以我做了“代码>char* m_value itoa 的算法吗? 在我的情况下,没有其他选项, 那么Char* 可以存储数字 。

< main > main.cpp

int main(int argc, char *argv[])
{
    LargeNumber l1;
    LargeNumber l3("172839023498234792834798237494"); 
    LargeNumber l7("-172839023498234792834798237494"); 

    l1 = l3 + l7;  //How to do it ?

    return 0;
}

< 强 > 万能编号.h

class LargeNumber{

      public:
      LargeNumber(char* value):m_value(value)
      {}

      LargeNumber operator+(const LargeNumber&);
      private:
      char* m_value;
}

< 强 > 大型编号.cpp

LargeNumber LargeNumber ::operator+(const LargeNumber &b)
{
        return LargeNumber ( ... );  //Sum both LargeNumber ???
}
问题回答

您需要使用大量算术库 。 < a href=" http://gmplib. org/" rel=" nofollow" >GMP 是一个不错的选择。 您的处理器无法以如此大小的数字进行本地操作, 因此这些图书馆会为您处理软件中的所有老式数学 。

不要重塑螺丝, 您应该使用 < a href=> "https:// mattmcccuchen. net/ bigint/" rel="nofollow" > BigInteger 库 。

无论如何,C字符串不是这样做的最好办法。

使用字符串而不是字符串, 而是用一整列( 或长的) 来做 。 操作员的算法将只是关于您亲手做什么的算法 。





相关问题
Undefined reference

I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...

C++ Equivalent of Tidy

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...

Template Classes in C++ ... a required skill set?

I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

typedef ing STL wstring

Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?

热门标签