Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How does one obtain the complementary hexadecimal value for a given input ?

This could be a bit more generic, i.e. having an array of X possible values, how do you convert a random array like arr[x] --> arr[arr.length - arr.indexOf(x)].

Please ignore the syntax.

share|improve this question
Do you mean simply reversing the hexadecimal string or reversing an array? – Don Roby Jul 4 '11 at 14:47
What do you mean by the "complementary hexadecimal value"? Please explain. – Jesper Jul 4 '11 at 14:47
e.g. 51FB becomes AE04 – iuati Jul 4 '11 at 14:53
Are you sure 51FB will be AE04 or AE05? – Tapas Bose Jul 4 '11 at 15:14
This is a F-complement :-) – PaĆ­lo Ebermann Jul 4 '11 at 15:14
show 2 more comments

1 Answer

up vote 1 down vote accepted

The following code snippet will find 16 complement of hexadecimal number:

BigInteger subtrahend = new BigInteger("2D", 16); 
// input, you can take input from user and use after validation
char[] array = new char[subtrahend.toString(16).length()];
// construct a character array of the given length
Arrays.fill(array, 'F');
// fill the array by F, look at the first source there the FF is subtracted by 2D
BigInteger minuend = new BigInteger(new String(array), 16);
// construct FFF... Biginteger of that length
BigInteger difference = minuend.subtract(subtrahend);
// calculate minus
BigInteger result = difference.add(BigInteger.ONE);
// add one to it
System.out.println(result.toString(16));
// print it in hex format

Hope this will help you. Thank you.

Source:

  1. Binary and Hexadecimal Arithmetic
  2. Digital Principles and Logic Design

First find the 15's complement of the given input by subtracting it from the number FF... which is of the same length of the input. Then add 1 to it.

share|improve this answer
Thanks, great reply! – iuati Jul 4 '11 at 15:15
Welcome iuati.. – Tapas Bose Jul 4 '11 at 15:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.