Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to switch two elements in a linked list without removing and reinserting them? The code I am currently using is:

void exchange(int i, int j) {
    int[] temp = matrix.get(i);
    matrix.remove(i);
    matrix.add(i, matrix.get(j - 1));
    matrix.remove(j);
    matrix.add(j, temp);
}

where matrix is my linked list.

share|improve this question
6  
In Java, LinkedList is a bad choice if you intent to access the elements by index. Consider ArrayList or Vector. – DwB Jan 13 '11 at 16:49

3 Answers

up vote 4 down vote accepted

If you must implement it yourself, this will work:

void exchange(int i, int j) {
    ListIterator<int[]> it1 = matrix.listIterator(i),
                        it2 = matrix.listIterator(j);
    int[] temp = it1.next();
    it1.set(it2.next());
    it2.set(temp);
}

as will this:

void exchange(int i, int j) {
    matrix.set(i, matrix.set(j, matrix.get(i)));
}

The second is similar to how Collections.swap is implemented. The first is slightly more efficient for a long linked list.

share|improve this answer

Use the swap method in the Collections object: http://download.oracle.com/javase/6/docs/api/java/util/Collections.html#swap%28java.util.List,%20int,%20int%29

share|improve this answer
How do I go about implementing that? – Jon Jan 13 '11 at 16:50
Collections.swap(matrix, i, j) – jzd Jan 13 '11 at 16:52
Unfortunately, Collections#swap() is 2x O(n) for a linked list. See LinkedList#entry(int), as used by LinkedList#set(int, T). That's sad. – seh Jan 13 '11 at 16:57
matrix.set(i, matrix.set(j, matrix.get(i)));
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.