I need to convert a large decimal to binary how would I go about doing this? Decimal in question is this 3324679375210329505
|
|
|
|||||||||
|
|
You may want to go for
|
|||||||||||||||||
|
|
How about:
|
|||
|
I would use a Stack! Check if your decimal number is even or odd, if even push a 0 to the stack and if its odd push a 1 to the stack. Then once your decimal number hits 1, you can pop each value from the stack and print each one. Here is a very inefficient block of code for reference. You will probably have to use long instead of integer.
|
||||
|
|
|
If you want something fast (over 50% faster than
If you want the actual Two's Compliment binary representation of the
|
||||
|
|
|
A bit pointless, but here is a solution in C:
For the example, it prints out:
EDIT: And if you don't mind leading zeros....
|
||||
|
|