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

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;
share|improve this question

10 Answers

up vote 27 down vote accepted

You only need one temporary variable.

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

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 [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.

share|improve this answer
2  
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

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.

share|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

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

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

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];
share|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
1  
Something is wrong. Doesn't list[y] = list[x] - list[x]; just equate to list[y] = 0;? – ErikE Dec 9 '12 at 7:59
The xor trick also fails when x=y -- it sets list[x] to zero, when you might expect it to keep list[x] the original value. – David Cary Feb 14 at 17:51

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

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

To swap two consecutive elements of array

array.splice(IndexToSwap,2,array[IndexToSwap+1],array[IndexToSwap]);
share|improve this answer
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];
share|improve this answer

According to some random person on Metafilter, "Recent versions of Javascript allow you to do swaps (among other things) much more neatly:"

[ list[x], list[y] ] = [ list[y], list[x] ];

My quick tests showed that this Pythonic code works great in the version of JavaScript currently used in "Google Apps Script" (".gs"). Alas, further tests show this code gives a "Uncaught ReferenceError: Invalid left-hand side in assignment." in whatever version of JavaScript (".js") is used by Google Chrome Version 24.0.1312.57 m.

share|improve this answer

Here's a compact version swaps value at i1 with i2 in arr

arr.slice(0,i1).concat(arr[i2],arr.slice(i1+1,i2),arr[i1],arr.slice(i2+1))

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.