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;
|
Is there any simpler way to swap two elements in an array?
|
|||
|
|
|
You only need one temporary variable.
|
|||
|
|
|
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.
Edit: The |
|||||||||||
|
|
This seems ok....
Howerver using
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
which can be called like:
This is a clean approach to both avoiding memory leaks and DRY. |
||||
|
|
Well, you don't need to buffer both values - only one:
|
|||||
|
|
With numeric values you can avoid a temporary variable by using bitwise xor
or a arithmetic sum
|
|||||||||||||||||
|
|
Digest from http://www.greywyvern.com/?post=265
|
|||
|
|
|
To swap two consecutive elements of array
|
|||
|
|
|
||||
|
|
|
According to some random person on Metafilter, "Recent versions of Javascript allow you to do swaps (among other things) much more neatly:"
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. |
|||
|
|
|
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)) |
|||
|
|