I used to implement something acting as a very large integer using char. But it suddenly occurred to me that I can use unsigned int, which is more straight-forward to implement.

For example, I use every unsigned int to store at most 9 999 999, and make use of the most significant digit as a buffer to increment to the "next" unsigned int.

Thus, I can use 4 byte for 7 digits, instead of 4 digits while using char.

So, why do not we implement a big integer class with unsigned int?

link|improve this question

How big do your integers have to be? You could get pretty big (9.22337204 × 10^18, I think?) with an unsigned 64-bit value without having to implement a whole new type. – aardvarkk Jul 11 '11 at 15:44
feedback

1 Answer

up vote 2 down vote accepted

Who says you don't use uint for BigInteger? The C# BCL implementation of BigInteger (in System.Numerics) uses uint[] to store its bits.

In general, it will be more efficient to use the bits to represent a number, rather than the bits to represent the character digit of a number.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.