I want to maintain order of the elements being added in a list. So, I used a LinkedList
in Java.
Now I want to be able to swap two elements in the linke
There is a Collections.swap(List<?> list, int i, int j) that you can use to swap two elements of a List<?>
. There's also LinkedList.get(int index) and LinkedList.add(int index, E element) (both are methods specified by interface List). All of these operations will be O(N)
since a LinkedList
does not implements RandomAccess
.