Logo

Programming-Idioms

  • PHP
  • Java

Idiom #357 Swap elements of list

Swap the elements at indices i, j in the list items

import static java.util.Collections.swap;
swap(items, i, j);
items[i], items[j] = items[j], items[i]

New implementation...
< >
programming-idioms.org