How to convert an arbitrary large integer from base 10 to base 16? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T21:40:14Z http://stackoverflow.com/feeds/question/857070 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/857070/how-to-convert-an-arbitrary-large-integer-from-base-10-to-base-16 1 How to convert an arbitrary large integer from base 10 to base 16? Ryan Shaw 2009-05-13T09:53:15Z 2009-06-30T15:51:55Z <p>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.</p> <p>For example, the input is "1234567890987654321234567890987654321234567890987654321", and the output shall be "CE3B5A137DD015278E09864703E4FF9952FF6B62C1CB1"</p> <p>The faster the algorithm the better.</p> <p>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:</p> <pre><code>#define MAX_BUFFER 16 char hex[] = "0123456789ABCDEF"; char* dec2hex(unsigned input) { char buff[MAX_BUFFER]; int i = 0, j = 0; char* output; if (input == 0) { buff[0] = hex[0]; i = 1; } else { while (input) { buff[i++] = hex[input % 16]; input = input / 16; } } output = malloc((i + 1) * sizeof(char)); if (!output) return NULL; while (i &gt; 0) { output[j++] = buff[--i]; } output[j] = '\0'; return output; } </code></pre> <p>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.</p> <p>Can anyone give any hit or any link that can be read on?</p> <p>Thanks in advance.</p> <p><strong>Edit</strong> 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. </p> http://stackoverflow.com/questions/857070/how-to-convert-an-arbitrary-large-integer-from-base-10-to-base-16/857106#857106 1 Answer by Earwicker for How to convert an arbitrary large integer from base 10 to base 16? Earwicker 2009-05-13T10:02:05Z 2009-05-13T10:10:08Z <p>Here's a BigInt library:</p> <pre><code>http://www.codeproject.com/KB/cs/BigInt.aspx?msg=3038072#xx3038072xx </code></pre> <p>No idea if it works, but it's the first one I found with Google. It appears to have functions to parse and format big integers, so they may support different bases too.</p> <p><strong>Edit:</strong> Ahh, you're using C, my mistake. But you may be able to pick up ideas from the code, or someone using .NET may have the same question, so I'll leave this here.</p> http://stackoverflow.com/questions/857070/how-to-convert-an-arbitrary-large-integer-from-base-10-to-base-16/857110#857110 2 Answer by dirkgently for How to convert an arbitrary large integer from base 10 to base 16? dirkgently 2009-05-13T10:03:33Z 2009-05-13T10:03:33Z <blockquote> <p>The real challenging part is the "arbitrary large" unsigned integer.</p> </blockquote> <p>Have you tried using <a href="http://gmplib.org/" rel="nofollow">GNU MP Bignum</a> library?</p> http://stackoverflow.com/questions/857070/how-to-convert-an-arbitrary-large-integer-from-base-10-to-base-16/857114#857114 1 Answer by mouviciel for How to convert an arbitrary large integer from base 10 to base 16? mouviciel 2009-05-13T10:04:40Z 2009-05-13T10:04:40Z <p>Unix <code>dc</code> is able to do base conversions on arbitrary large integers. Open BSD source code is available <a href="http://www.openbsd.org/cgi-bin/cvsweb/src/usr.bin/dc/" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/857070/how-to-convert-an-arbitrary-large-integer-from-base-10-to-base-16/857358#857358 -1 Answer by Preston for How to convert an arbitrary large integer from base 10 to base 16? Preston 2009-05-13T11:11:42Z 2009-05-13T11:11:42Z <p>man sprintf or snprintf (for the security "stack overflow" types).</p> <p>Hint, check out the "x" or "X" as your print format.</p> http://stackoverflow.com/questions/857070/how-to-convert-an-arbitrary-large-integer-from-base-10-to-base-16/861084#861084 5 Answer by Mr Bocce for How to convert an arbitrary large integer from base 10 to base 16? Mr Bocce 2009-05-14T00:39:46Z 2009-05-14T00:39:46Z <p>1) Allocate an array of integers, number of elements is equal to the length of the input string. Initialize the array to all 0s.</p> <p>This array of integers will store values in base 16.</p> <p>2) Add the decimal digits from the input string to the end of the array. Mulitply existing values by 10 add carryover, store new value in array, new carryover value is newvalue div 16.</p> <p>carryover = digit; for (i = (nElements-1); i >= 0; i--) { newVal = array[index] * 10) + carryover; array[index] = newval % 16; carryover = newval / 16; }</p> <p>3) print array, start at 0th entry and skip leading 0s.</p> <p><hr /></p> <p>Here's some code that will works. No doubt there are probably a few optimizations that could be made. But this should suffice as a quick and dirty solution:</p> <pre><code>#include "stdio.h" #include "sys/types.h" char HexChar [16] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' }; static int * initHexArray (char * pDecStr, int * pnElements); static void addDecValue (int * pMyArray, int nElements, int value); static void printHexArray (int * pHexArray, int nElements); static void addDecValue (int * pHexArray, int nElements, int value) { int carryover = value; int tmp = 0; int i; /* start at the bottom of the array and work towards the top * * multiply the existing array value by 10, then add new value. * carry over remainder as you work back towards the top of the array */ for (i = (nElements-1); (i &gt;= 0); i--) { tmp = (pHexArray[i] * 10) + carryover; pHexArray[i] = tmp % 16; carryover = tmp / 16; } } static int * initHexArray (char * pDecStr, int * pnElements) { int * pArray = NULL; int lenDecStr = strlen (pDecStr); int i; /* allocate an array of integer values to store intermediate results * only need as many as the input string as going from base 10 to * base 16 will never result in a larger number of digits, but for values * less than "16" will use the same number */ pArray = (int *) calloc (lenDecStr, sizeof (int)); for (i = 0; i &lt; lenDecStr; i++) { addDecValue (pArray, lenDecStr, pDecStr[i] - '0'); } *pnElements = lenDecStr; return (pArray); } static void printHexArray (int * pHexArray, int nElements) { int start = 0; int i; /* skip all the leading 0s */ while ((pHexArray[start] == 0) &amp;&amp; (start &lt; (nElements-1))) { start++; } for (i = start; i &lt; nElements; i++) { printf ("%c", HexChar[pHexArray[i]]); } printf ("\n"); } int main (int argc, char * argv[]) { int i; int * pMyArray = NULL; int nElements; if (argc &lt; 2) { printf ("Usage: %s decimalString\n", argv[0]); return (-1); } pMyArray = initHexArray (argv[1], &amp;nElements); printHexArray (pMyArray, nElements); if (pMyArray != NULL) free (pMyArray); return (0); } </code></pre> http://stackoverflow.com/questions/857070/how-to-convert-an-arbitrary-large-integer-from-base-10-to-base-16/1064496#1064496 1 Answer by semiuseless for How to convert an arbitrary large integer from base 10 to base 16? semiuseless 2009-06-30T15:51:55Z 2009-06-30T15:51:55Z <p>Python:</p> <pre><code>&gt;&gt;&gt; from string import upper &gt;&gt;&gt; input = "1234567890987654321234567890987654321234567890987654321" &gt;&gt;&gt; output = upper(hex(int(input)))[2:-1] &gt;&gt;&gt; print output CE3B5A137DD015278E09864703E4FF9952FF6B62C1CB1 </code></pre>