17
votes
5answers
2k views
How can I represent a very large integer in .NET?
Does .NET come with a class capable of representing extremely large integers, such as 100 factorial? If not, what are some good third party libraries to accomplish this?
5
votes
6answers
294 views
Fastest way to convert binary to decimal?
I've got four unsigned 32-bit integers representing an unsigned 128-bit integer, in little endian order:
typedef struct {
unsigned int part[4];
} bigint_t;
I'd like to convert this number into …
5
votes
13answers
3k views
How to implement big int in C++
Hi,
I'd like to implement a big int class in C++ as a programming exercise. A class that can handle numbers bigger then a long int. I know that there are several open source implementations out …
4
votes
7answers
366 views
Arbitrary-precision arithmetic Explanation
I'm trying to learn C and have come across the inability to work with REALLY big numbers (i.e., 100 digits, 1000 digits, etc.). I am aware that there exist libraries to do this, but I want to attempt …
4
votes
4answers
224 views
Finding prime factors to large numbers using specially-crafted CPUs
My understanding is that many public key cryptographic algorithms these days depend on large prime numbers to make up the keys, and it is the difficulty in factoring the product of two primes that …
4
votes
4answers
1k views
Working with large numbers in PHP.
To use modular exponentiation as you would require when using the Fermat Primality Test with large numbers (100,000+), it calls for some very large calculations.
When I multiply two large numbers …
3
votes
3answers
90 views
Bignum implementation that has efficient addition of small integers
I have been using python's native bignums for an algorithm and decided to try and speed it up by converting it to C++. When I used long longs, the C++ was about 100x faster than the python, but when I …
3
votes
1answer
54 views
bignum in emacs/elisp
Does emacs have support for big numbers that don't fit in integers? If it does, how do I use them?
3
votes
3answers
643 views
Best bignum library to solve Project Euler problems in C++ ?
Hi,
I am still a student, and I find project Euler very fun.
sometimes the question requires calculations that are bigger than primitive types. I know you can implement it but I am too lazy to do …
3
votes
1answer
194 views
Why does JRuby not recognize BigNums while Ruby does?
If I type this big integer:
puts 9997836544.class.to_s
and compile with ruby 1.86, it reports expectedly:
BigNum
while JRuby (1.1.4 in Netbeans) reports surprisingly:
Fixnum
I thought Java …
3
votes
4answers
408 views
Most efficient implementation of a large number class
When doing calculations on very large numbers where integral data types such as double or int64 falls short, a separate class to handle such large numbers may be needed.
Does anyone care to offer …
2
votes
3answers
307 views
Big Number Subtraction in C
I just finished my exam in an introductory C course about 20 minutes ago. The first question on the exam caught me somewhat off guard, and involved finding the difference two large numbers.
The goal …
2
votes
2answers
186 views
How can I get digits out of a Perl bignum?
I have a really big number in Perl. I use "bignum". How can I extract single digits out of this big number. For example if I have a number like this and what to get the 3rd digit from the end:
…
1
vote
5answers
462 views
Convert Hex to Decimal when no datatype can hold the full number
Ok, so I am working with a PIC microprocessor, in C. It's a 16F, so it can't hold integers larger than 32bits (unsigned int32 is the largest datasize available)
From a reader, I receive a 5 byte ID …
1
vote
4answers
301 views
Sieve of Eratosthenes problem: handling really big numbers.
I'm solving Sphere's Online Judge Prime Generator using the Sieve of Eratosthenes.
My code works for the test case provided. But.. as the problem clearly states:
The input begins with the number …
