Tagged Questions
The large-number tag has no wiki summary.
7
votes
3answers
6k views
Handling very large numbers in Python
I've been considering fast poker hand evaluation in Python. It occurred to me that one way to speed the process up would be to represent all the card faces and suits as prime numbers and multiply them ...
5
votes
4answers
2k views
infinite loop in c++
I'm learning C++ and writing little programs as I go along. The following is one such program:
// This program is intended to take any integer and convert to the
// corresponding signed char.
...
2
votes
2answers
231 views
complex numbers in python
hi all
is there some library for large precision complex numbers in python?
2
votes
4answers
270 views
finding combinatorial of large numbers
What is an efficient way of finding the number of ways k gifts can be chosen from N gifts where N can be very large (N ~ 10^18). That is we have to calculate N(C)K or N chose K. K can also be of the ...
1
vote
4answers
252 views
Algorithm for doing arithmetic operation on very large numbers
I need a algorithm to perform arithmetic operations on large numbers(that are way above range of float, double int or any other data type for that matter). I am required to write the code in C. I ...
0
votes
2answers
249 views
PHP integer exponentiation (super large numbers)
Using PHP I want to do millions of 2^n exponentiation but so far I only got up to n^1023 before PHP printed INF.
Any ideas?