I have an integer variable, that can get a value larger than 4294967295.
What type should I use for it (long long, or double, or something else)?
feedback
|
|
There is no portable way of doing this in C++, as the language does not specify the size of integer types (except sizeof char is 1). You need to consult your compiler documentation. | |||||
feedback
|
|
Use
| |||||||||||||||||||||
feedback
|
|
Try: http://gmplib.org/ big num. http://mattmccutchen.net/bigint/ big int. I've used neither, but I've used similiar things in Java. | |||||
|
feedback
|
|
I'm going to assume your numbers will fit in 64 bits. If not, then you need an arbitrary-precision arithmetic library such as GMP. In theory, there's no easy, portable way to do 64-bit maths in C++. In practise, most C++ compilers also support the "old fashioned" C headers, and C99 has a nice header called stdint.h. So first do:
Then use types | ||||
|
feedback
|
|
Both proposals aren't good because long long is not a standard C++ data type, and double is a floating-point. Since my program has to be portable, I am going to #define my own types, that suit all the compilers that I use (visual studio and gcc) :
| |||||||||||||
feedback
|
|
Don't use double, because:
Output:
| |||
feedback
|
|
I use
But it's not standard. | |||||||
feedback
|
|
A lot of current C/C++ compilers have either stdint.h or inttypes.h header.
| |||
|
feedback
|
|
How portable should your program be? TR1 has cstdint and stdint.h so it's likely supported by most up-to-date compilers. Then there is Boost cstdint.hpp that you should be able to use if cstdint is not supported. | |||
|
feedback
|
|
Doubles are floating-point. You should use long long, probably. I don't know which alias is the preferred one. | |||
|
feedback
|
|
if you don't need negative numbers, unsigned long long sounds like most you can get. | |||
|
feedback
|
|
If your compiler does not have long long you can implement them yourself with a structure containing two long but you will need to be caurseful with carry etc. You could of course look for a Multiple Precision Arithmetic like GMP | |||
|
feedback
|
|
Try TTMath. All you need to do is include a single header and then declare a bignum type such as:
which creates a type that can hold unsigned integers between 0 and 2 ^ (32*100)-1.
Then just use Of course you can choose whatever size you like for the template parameter. 100 might be overkill ;-) Just realised, the lib only works on x86 and x64, but is OS cross-platform on those processors. | |||||
feedback
|