|
3 |
deleted 1408 characters in body
|
||
|
|
||||
|
2 | edited tags | ||
|
The program requires an input of an arbitrary large unsigned integer which is expressed as one string in base 10. The outputs is another string that expresses the integer in base 16. For example, the input is "1234567890987654321234567890987654321234567890987654321", and the output shall be "CE3B5A137DD015278E09864703E4FF9952FF6B62C1CB1" The faster the algorithm the better. It will be very easy if the input is limited within 32-bit or 64-bit integer; for example, the following code can do the conversion:
The real challenging part is the "arbitrary large" unsigned integer. I have googled but most of them are talking about the conversion within 32-bit or 64-bit. No luck is found. Can anyone give any hit or any link that can be read on? Thanks in advance. Edit This is an interview question I encountered recently. Can anyone briefly explain how to solve this problem? I know there is a gmp library and I utilized it before; however as an interview question it requires not using external library.
|
||||
|
1 |
|
||
How to convert an arbitrary large integer from base 10 to base 16?The program requires an input of an arbitrary large unsigned integer which is expressed as one string in base 10. The outputs is another string that expresses the integer in base 16. For example, the input is "1234567890987654321234567890987654321234567890987654321", and the output shall be "CE3B5A137DD015278E09864703E4FF9952FF6B62C1CB1" The faster the algorithm the better. It will be very easy if the input is limited within 32-bit or 64-bit integer; for example, the following code can do the conversion:
The real challenging part is the "arbitrary large" unsigned integer. I have googled but most of them are talking about the conversion within 32-bit or 64-bit. No luck is found. Can anyone give any hit or any link that can be read on? Thanks in advance.
|
||||
