vote up 0 vote down star
1

How many different ways can you come up with to swap the values of two variables without using any third variable ?

I use this one:

     a^=b^=a^=b
flag

69% accept rate
2  
Out of curiosity, have you come across a situation where you needed this functionality? – Adam Naylor Apr 16 at 15:52
1  
IIRC, this cannot be done safely in one statement since it attempts to modify a value twice between two sequence points. I think that you need to place this in separate statements: "a^=b; b^=a; a^=b;". – D.Shawley Apr 16 at 15:54
2  
don't we have better things to do? Ran out of useful questions? That you "use" that solution is more than a litte scary. Hopefully you don't actually think it's more efficient than using a temp variable. – jalf Apr 16 at 15:55
Are a and b positive integers? You could have trouble otherwise. – FarmBoy Apr 16 at 15:58
@D.Shawley - Yes it works if you do it in a single statement as I mentioned. – this.__curious_geek Apr 16 at 16:02
show 3 more comments

18 Answers

vote up 14 vote down check

Generalising your example slightly, whenever two binary operations # and @ are inverses of each other, the following sequence will exchange the values of a and b:

a = a # b
b = a @ b
a = a @ b

Your example works because ^ (XOR) is its own inverse.

This is a neat trick. Unfortunately, some people think it makes a good interview question.

[EDIT: Thanks to mouviciel for correcting an error on the 2nd line.]

link|flag
Yes, You are absolutely correct saying this. Secondly, I've observed that the order of operation also matters. You can get proper swaping results not only by just executing in the order you've mentioned but also by exeuting them in reverse order as well. – this.__curious_geek Apr 16 at 16:00
Isn't it b = a @ b on the second line? – mouviciel Apr 16 at 16:04
Yep - I hate this sort of interview question, because all it shows is how clever the interviewer thinks he is – ChrisF Apr 16 at 16:09
@mouviciel: Good spotting! Fixed. – j_random_hacker Apr 16 at 16:11
3  
@Roberto: In nearly all languages and implementations, integer + and - will use 2's complement arithmetic, meaning that overflows are "symmetrical": even if z = (x + y) overflows, (z - y) == x. (And the same is true with + and - swapped.) – j_random_hacker Apr 16 at 17:33
show 4 more comments
vote up 10 vote down

In Ruby:

a,b = b,a
link|flag
I think you'd have to use assembly to get any more elegant. – Adam Lassek Apr 16 at 16:17
Works in Python too. – Bastien Léonard Apr 16 at 16:18
vote up 2 vote down

Read this in my first book on C (Programming with C -- Sudhir Kaicker):

a += b;
b = a - b;
a = a - b;
link|flag
assumes the types support the += operator – Adam Naylor Apr 16 at 15:53
I typed those on a line each. Why are they appearing in one line? – Agnel Kurian Apr 16 at 16:05
@agnel - you need to mark the lines as "code" – ChrisF Apr 16 at 16:06
Assuming a += b doesn't overflow the type... – smalloy Apr 16 at 16:13
Good call, null, although it's still guaranteed to work on unsigned integral types. – David Thornley Apr 16 at 16:15
show 4 more comments
vote up 1 vote down
a = a + b
b = a - b
a = a - b

There are many ways to do this. Trivially replacing +- with */ will also do it.

link|flag
1  
If a and b are floating-point numbers, * / probably wouldn't do it. – mmyers Apr 16 at 15:55
1  
Actually, if a == 0 or b == 0, then it your */ substitution will lead to dividing by zero. – FarmBoy Apr 16 at 15:56
Also, the semantics of integer division means that, for most values of a and b, * / will not work properly. – Matt J Apr 16 at 15:57
Don't forget that floating-point arithmetic is inexact. You're unlikely to wind up with the correct results there. It should work with integers, barring overflow, since you're dividing a number by its factors, which does work in integer division. – David Thornley Apr 16 at 16:17
1  
This works in any abelian group. Change the last assignment to a = (-b) + a and it will work also for nonabelian groups. It works with * if * is a group operator (for integers and floats, it's not). – fredrikj Apr 16 at 16:57
show 1 more comment
vote up -1 vote down

temp = a ; a = b ; b = temp ;

'Clever' ways are just noise, IMO.

Write code for people first, computers 2nd.

link|flag
I assume this question was asked with more of a 'Hey, check out this neat trick' attitude as opposed to a 'This is how people should write their code' attitude. I agree with you, though. – tehblanx Apr 16 at 15:57
@tehblanx: I seriously wish to learn another possible way to achieve this. Sometimes the approach of solving the problem matters much more than the solution actually. – this.__curious_geek Apr 16 at 16:11
vote up 8 vote down

PHP

list($a, $b) = array($b, $a);

JavaScript 1.7

[a, b] = [b, a]

Python

a, b = b, a
link|flag
1  
I don't think solutions like this really address the question - this is an interview "gotcha" where they're looking for the xor trick, and my sense is that these examples are just the language nicely hiding the swap. Even though you're not explicitly creating the swap, it's not what they're asking. – Steve B. Apr 16 at 16:19
2  
I haven't seen the word interview in the question. Anyway, while these solutions don't use the XOR trick they may prove some imagination in an interview. I haven't seen the PHP trick anywhere else. – Ionut G. Stan Apr 16 at 16:32
Shockingly, that Javascript solution doesn't work in IE. It is legal Javascript though and works in all modern browsers. :) – samgoody May 17 at 8:20
vote up 0 vote down

In F#

let swap  (a,b) = (b,a);;
link|flag
vote up 4 vote down

The XOR swap is a terrible, terrible thing.

link|flag
Why is it terrible? – jeffamaphone Apr 16 at 16:14
1  
It's a neat "trick". Nothing more. Given that any decent compiler would keep the temporary variable in a register, the straightforward way is almost definitely more efficient and easily more readable and understandable. – Michael Apr 16 at 16:37
1  
It only works with unsigned integers, and it breaks all kinds of good design concepts. It even fails as an optimization, since most processors can perform the swap in a single SWAP instruction. – e.James Apr 16 at 16:44
1  
@Bastien: In x86 assembly language, the dedicated XCHG instruction is likely to be faster. – j_random_hacker Apr 16 at 17:39
2  
@eJames: Yes it's terrible, but the XOR swap will in fact work on signed integers too. – j_random_hacker Apr 16 at 17:40
show 3 more comments
vote up 0 vote down

I asked this question awhile back:

How does XOR variable swapping work?

It got some really good responses if you are curious how this is possible.

link|flag
vote up -1 vote down

My Forth is way rusty, but:

. A
. B
@ A
@ B

(Does "@" write the top of the stack to a variable, or am I rustier than I thought? Anyway, this should work for all stack-based languages.)

If you're using the standard Forth idiom of treating stack entries as temporary variables, there's always:

SWAP
link|flag
vote up 0 vote down

In Common Lisp:

(psetf a b b a)
link|flag
I saw it in the mirror... – Svante Apr 16 at 21:15
The actual implementation of psetf relies on temporary variables. – Eduardo León Apr 17 at 3:14
No, that is implementation dependent. I could imagine that an optimized compiler can translate this to a single-cycle SWAP operation on whatever machine it runs on. – Svante Apr 17 at 12:21
vote up -3 vote down
  1. Don't post any answers for interpreted languages. The interpreters are themselves whole programs with lots of variables. So, while there are no variables in your program, there are lots of variables in the program that runs your program.

EDIT: I didn't mean to offend the sensibility of those of you who use dynamic languages. They are very useful tools, but, to me, the definition of a variable is something that is in the call stack and isn't the address in memory of the instruction the program must return to after the current subroutine finishes. And those nice library functions and thingies you're used to have tons of temporary results. Those temporary results must be stored somewhere in the memory, whether you like to call it a variable or not.

  1. The XOR swap is a very good one. I like it.

EDIT: The optimal implementation of the XOR swap doesn't involve any temporary results that don't have to be stored in temporary variables (not even in machine code!). This is what I meant. Using the XCHG instruction is a nice alternative.


link|flag
By that argument, anything that's not assembler doesn't count. – Svante Apr 16 at 17:48
To distinguish compiled languages from interpreted ones on that basis is silly. – woodchips Apr 16 at 23:43
The swap in an interpreted language is often a language construct. You can think of it like a library function. There must be a call stack, where many temporary variables are allocated. Instead, in a C or ASM program that uses the XOR swap or the XCHG instruction, respectively, you can ensure there aren't any temporary variables in the stack. – Eduardo León Apr 24 at 12:36
vote up 1 vote down

Intel Assembly

Assuming the variables a, b are defined in .data:

mov  eax, a
xchg b, eax
mov  a, eax
link|flag
Shouldn't you have brackets around a and b since they're memory references? – bcat Nov 15 at 6:52
vote up 0 vote down

In Lua:

a,b = b,a

You have to like it. It goes for any number of vars.

You didn't mention in what language tho :P

link|flag
No Constraint on Language but I'd prefer to have mathematical solution. The question has been tagged under 'math' Tag. – this.__curious_geek Apr 17 at 5:06
vote up 0 vote down

In MATLAB:

[a,b] = deal(b,a);
link|flag
vote up 0 vote down

In assembly language of 8051 family , suppose X= 50 Y= 30

mov r1,#50 // r1=50 i.e. x

mov r0,#30 // r0=30 i.e. y

mov r2,r1 // r2=50, r1=50, r0=30

mov r1,r0 // r1=30, r0=30, r2=50

mov r0,r2 // r0=50, r1=30, r2=50

Hence initially X=r1=50 and Y=r0=30

after the sequence X=r1=30 and Y=r0=50

Note :- r0, r1 and r2 are registers of the 8051 microcontroller

link|flag
read the question carefully. You cannot use 3rd variable or storage. you must do it with r0 and r1 only. You cannot use r2 – this.__curious_geek Jul 31 at 11:30
vote up 0 vote down

Works in many languages

Works only with numbers

a = a + b - (b = a);
link|flag
specifically, integers. It is also based on the side effect that (b=a) sets b to a and returns a. – nlucaroni Jul 31 at 13:26
vote up -1 vote down

This is a simple method, logic can be implemented all the languages... Happy Sensible Coding..

$v = 'sriram';
$u = 'lakshmi';

$v .= $u;
$u = substr($v,0,(strlen($v) - strlen($u)));
$v = substr($v,(strlen($v) - strlen($u)-1), strlen($v));

echo 'u = ' . $u .'<br>';
echo 'v = ' . $v;
link|flag
To make it more sensible you should post a more 'general' method for swaping integers and floating-point numbers. Happy coding. – this.__curious_geek Nov 15 at 5:55

Your Answer

Get an OpenID
or

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