Swap element in a list
static void swap(List<?> list, int i, int j)
- Swaps the elements at the specified positions in the specified list.
import java.util.Collections;
import java.util.Vector;
public class Main {
public static void main(String[] args) {
Vector<String> v = new Vector<String>();
v.add("1");
v.add("2");
v.add("3");
v.add("4");
v.add("java2s.com");
System.out.println(v);
Collections.swap(v, 0, 4);
System.out.println(v);
}
}
The output:
[1, 2, 3, 4, java2s.com]
[java2s.com, 2, 3, 4, 1]
Home
Java Book
Collection
Java Book
Collection
Collections:
- Collections
- Get empty collection from Collections
- Do binary search
- Copy value to a List
- Get Enumeration from collection, create list from Enumeration
- Fill a list
- Get the max and min value from a Collection
- Fill n Copy object to a list
- Replace value in a list
- Reverse a list
- Get comparator in reverse order
- Rotate and shuffle a list
- Create singleton
- Sort a list
- Swap element in a list
- Get a synchronized collection
- Return an unmodifiable view of collections