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.
|
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 |
|||||||||||||||||||
|
|
Or by breaking it up into multiple statements:
It is still, however, usually a bad method for swapping variables - several of the other answers and comments have adequately explained why. |
|||
|
|
|
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. |
|||||
|
|
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. |
|||
|
|
|
||||
std::swap? – Billy ONeal Mar 13 '10 at 5:56std::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