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

I have a program which works with genetic algorithms and generates an 8-bit binary string (chromosome consisting of eight genes).

I would like to know how I would go about changing / flipping the first gene/bit.

For example:

Original chromosome:
01010101

Changed chromosome:
11010101 //First bit has been changed

If the first bit has a value of 1, I would like to 'flip' it to make it a 0; and, obviously, if the first bit in the array/chromosome is a 0, I would like to 'flip' that to a 1.

Thank you.

share|improve this question
2  
Your assertion '8 bit binary string' is misleading. Are you storing this data in an int, short, or as a String? – Perception Oct 7 '11 at 14:03
The data is stored in an int. – SnookerFan Oct 7 '11 at 15:05

1 Answer

up vote 4 down vote accepted

You could use the following:

chromosome ^= 0x80;

The xor-assignment (^=) flips the chromosome bits that are set in the right-hand side expression, and 0x80 is 10000000 in binary.

More generally, to flip the k-th bit (with the least significant bit being bit 0):

chromosome ^= (1 << k);
share|improve this answer

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.