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 heard from a friend of mine that the best algorithm for swapping is " (a^=b^=a^=b)" where a and b are two integers to be swapped. but when i applied this using c language it resulted in crashing. can anyone of you fine people explain the possible reason for that? please suggest the best algorithm for swapping. thank you!!!! guys i would like to know the reason for crashing.

share|improve this question
1  
I can't believe this is even a question on SO. What's wrong with std::swap? – Billy ONeal Mar 13 '10 at 5:56
11  
@BillyONeal: since std::swap is C++ and this question is tagged with C. – LiraNuna Mar 13 '10 at 6:00
1  
OK -- Sorry -- Let me change that to "What's wrong with the plain simple implementation typical of std::swap? T temp = one; one = two; two = temp;? Seriously -- if swap is a speed limiter of your program then you have a problem I'd sure like to have. – Billy ONeal Mar 13 '10 at 6:04
1  
Whether this is the "best algorithm for swapping" is entirely subjective and dependent on what you are trying to achieve. It may be amongst the 'cleverest' tricks, but 'best' IMO would be the code a future maintainer will understand and for which the behaviour for all possible inputs is well defined and understood. This does not pass that test. Always bear in mind the following: nedbatchelder.com/blog/200310/… – Clifford Mar 13 '10 at 7:47
3  
Your friend's a menace. Who writes code like that? – Steve Jessop Mar 13 '10 at 13:23

5 Answers

up vote 8 down vote accepted

this swapping trick is sometimes dangerous, I have seen a a wrong quicksort program using this swap generates wrong results. But a usual swap generates correct program.

Respect to speed, the compiler sometimes generates faster code if we use a tmp variable.

use tmp = a; a = b; b = tmp;

share|improve this answer
thanks @yin i would like to know why is my trick very dangerous? – Ashish Yadav Mar 13 '10 at 5:29
5  
XOR swap (a^=b^=a^=b) will only work on integers (and pointers). XOR swap will change both a and b to 0 if they are equal. – LiraNuna Mar 13 '10 at 5:32
2  
Suppose a and b are pointers that point to the same thing. Then (*a)^=(*b)^=(*a)^=(*b) will zero out the value. In C++ if these are references you can do this without the dereference. But the real reason to use what @Yin Zhu suggests is that your code should be clear, and you shouldn't worry about a micro-optimization like this. – rlbond Mar 13 '10 at 5:34
1  
@ashish en.wikipedia.org/wiki/XOR_swap_algorithm for detail discussion. the wiki article does not discuss why it is dangerous. – Yin Zhu Mar 13 '10 at 5:35
1  
@ratty: Not necessarily; the compiler can optimize away the temporary integer. In fact, this analysis (big-bad-al.livejournal.com/98093.html) found that not only did the XOR and addition/subtraction methods fail to save any memory over the temporary variable method on an X86 processor, they were actually slower than the tmp method. The addition/subtraction one even used an additional register. In short, you should leave micro-optimizations like this to the compiler. – Josh Townzen Mar 13 '10 at 7:15
show 4 more comments

a^=b^=a^=b; probably crashes because it invokes the dreaded undefined behaviour. The rule it breaks is that it modifies a twice without an intervening sequence point. It can be fixed by inserting some sequence points - for example, with the comma operator:

a ^= (b ^= a ^= b, b);`

Or by breaking it up into multiple statements:

b ^= a ^= b; a ^= b;

It is still, however, usually a bad method for swapping variables - several of the other answers and comments have adequately explained why.

share|improve this answer

See http://en.wikipedia.org/wiki/Swap_(computer_science) .

Using a temporary variable generates more overhead, but is more stable than the XOR swap algorithm and parallel computing renders it faster than XOR swap.

See the first code example of http://www.ibm.com/developerworks/linux/library/l-metaprog1.html for a solid implementation of using a temporary variable for swapping.

share|improve this answer
1  
why does is generate more overhead for the temporary variable solution ? The XOR swap also creates more computation overhead also. – phoxis Aug 26 '11 at 15:59

Write that code that is faster to read by human being. And trust compilers' ability to generate better code most of the time. Do a profiling to see if this is the only place to improve speed. Then apply XOR solutions listed many times above , it may not work every where.

share|improve this answer

Use this logic for numeric values :

    int a = 10, b =5 ;
    a = a-b;
    b = b+a ;         // b gets the original value of a
    a = b - a;    // a gets the original value of b
    printf ("value : %d %d \n",a ,b) ;
share|improve this answer
1  
What happens when a is INT_MAX, and b is INT_MIN? In other words, a-b can overflow/underflow. – Alok Mar 13 '10 at 6:05
@Alok: Despite the overflow, it will still give the correct answer with wraparound arithmetic. – dan04 Mar 13 '10 at 7:51
3  
@dan04: wraparound is not guaranteed - in C/C++ integer overflow is UB. – Paul R Mar 13 '10 at 9:48

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.