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?
| |||
|
feedback
|
|
You only need one temporary variable.
| |||
|
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;
Edit: The the | |||||||||||
feedback
|
|
Well, you don't need to buffer both values - only one:
| |||||
feedback
|
|
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. | ||||
feedback
|
|
With numeric values you can avoid a temporary variable by using bitwise xor
or a arithmetic sum
| |||||||||||
feedback
|
|
Digest from http://www.greywyvern.com/?post=265
| |||
|
feedback
|
| ||||
|
feedback
|