Is there any simpler way to swap two elements in an array?

var a = list[x], b = list[y];
list[y] = a;
list[x] = b;
link|improve this question

80% accept rate
feedback

7 Answers

up vote 16 down vote accepted

You only need one temporary variable.

var b = list[y];
list[y] = list[x];
list[x] = b;
link|improve this answer
feedback

If you want a single expression, using native javascript, remember that the return value from a splice operation contains the element(s) that was removed.

var A= [1, 2, 3, 4, 5, 6, 7, 8, 9], x= 0, y= 1;

A[x]= A.splice(y, 1, A[x])[0];
alert(A); // alerts"2,1,3,4,5,6,7,8,9"

Edit:

The the [0] is necessary at the end of the expression as Array.splice() returns an array, and in this situation we require the single element in the returned array.

link|improve this answer
1  
splice returns an array. So in your example, after the swap operation your array actually looks like: [[2], 1, 3, 4, 5, 6, 7, 8, 9] – JPot May 19 '09 at 14:57
1  
A[x]= A.splice(y, 1, A[x])[0]; ? in mootools Array.implement({ swap: function(x, y) { this[y] = this.splice(x, 1, this[y])[0]; } }); – ken Jan 10 '10 at 5:16
Confirmed, the [0] is missing. – Johann Philipp Strathausen May 27 '10 at 11:29
feedback

Well, you don't need to buffer both values - only one:

var tmp = list[x];
list[x] = list[y];
list[y] = tmp;
link|improve this answer
1  
your 'tmp' sounds more reasonable to use then 'b' – mtasic May 16 '09 at 12:42
feedback

This seems ok....

var b = list[y];
list[y] = list[x];
list[x] = b;

Howerver using

var b = list[y];

means a b variable is going to be to be present for the rest of the scope. This can potentially lead to a memory leak. Unlikely, but still better to avoid.

Maybe a good idea to put this into Array.prototype.swap

Array.prototype.swap = function (x,y) {
  var b = this[x];
  this[x] = this[y];
  this[y] = b;
  return this;
}

which can be called like:

list.swap( x, y )

This is a clean approach to both avoiding memory leaks and DRY.

link|improve this answer
I like this also. Array.implement({ swap: function(x,y) { x = this[x]; this[x] = this[y]; this[y] = x; return this; } }); – ken May 17 '09 at 6:23
feedback

With numeric values you can avoid a temporary variable by using bitwise xor

list[x] = list[x] ^ list[y];
list[y] = list[y] ^ list[x];
list[x] = list[x] ^ list[y];

or a arithmetic sum

list[x] = list[x] + list[y];
list[y] = list[x] - list[x];
list[x] = list[x] - list[y];
link|improve this answer
1  
Is that darth as in vader ? +1 – krosenvold May 16 '09 at 12:34
5  
That only works with numeric values though, doesn't it? – Dan Herbert May 16 '09 at 12:40
It would work with any binary values of the same length. – Stephen Holiday Oct 1 '10 at 20:34
feedback

Digest from http://www.greywyvern.com/?post=265

var a = 5, b = 9;    
b = (a += b -= a) - b;    
alert([a, b]); // alerts "9, 5"
link|improve this answer
+1 for a slick one – gion_13 Oct 14 '11 at 10:03
feedback
var a = [1,2,3,4,5], b=a.length;

for (var i=0; i<b; i++) {
    a.unshift(a.splice(1+i,1).shift());
}
a.shift();
//a = [5,4,3,2,1];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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