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

I would like to use a linked list in order to perform extractions and insertions of elements, trying out all combinations for a heuristic. Linked lists are more efficient for this type of operations. Since I would want to try all possible pairs of extractions/inserts, I used two different iterators over the list. This raises a "ConcurrentModificationException". How could I perform this operation efficiently, without re-traversing the list every time, as this would defeat the whole purpose of using a list in the first place?

Here is the relevant part of the code:

ListIterator<Integer> it1 = data.listIterator();
ListIterator<Integer> it2;

while(it1.hasNext()) {
    int i = it1.next();
    it2 = data.listIterator();

    while(it2.hasNext()) {
        if (i == it2.next()) continue; // continue right away when the indexes are equal
        it1.remove();
        it2.add(i);
        if (length() < best)
            return true;
        }

    // when the swap is not better/consistent
    it2.remove();
    it1.add(i);
}
return false;

Thanks

share|improve this question
2  
If you change the list through one iterator, you cannot use any other iterators. – Marko Topolnik Nov 15 '12 at 14:10
1  
Can you use ConcurrentLinkedQueue instead as it doesn't get CME? I suspect there is more efficient way to do whatever you are doing in any case. – Peter Lawrey Nov 15 '12 at 14:14
Please google such: www.google.com/search?q=multi+dimensional+linked+list+java and check the results like dreamincode.net/forums/topic/… – K_B Nov 15 '12 at 14:33
I have to consider all possible combinations of reinserts, for a specific heuristic. All combinations have to be evaluated. This is meant to explore a restricted neighborhood O(n^2) of a NP-hard problem. – David Blinder Nov 15 '12 at 14:33
But you cannot consider all reinserts on a single list, anyway. You need distinct versions of the list. – Marko Topolnik Nov 15 '12 at 14:34
show 1 more comment

2 Answers

You can't use multiple iterators simultaneously on a LinkedList, however you can with a CopyOnWriteArrayList

Try this:

List<Integer> safeData = new CopyOnWriteArrayList(date);
// your code, but working with safeData rather than data
share|improve this answer
Thank you, but this is implemented as an array, not as a list. This means inserts will not be efficient; O(n) instead of O(1). – David Blinder Nov 15 '12 at 14:54
@DavidBlinder inserts will be less efficient, but not because of anything you have said. lists use arrays internally, but this special class makes an entire copy of iteself internally on change to make it threadsafe - see linked javadoc – Bohemian Nov 15 '12 at 20:06

You can use ANY number of iterators on a LIST when you are doing only a read operation. Since you are doing a remove / add here, you can't use the same list with two different iterators as it will cause the ConcurrentModificationException as you are experiencing now.

What you like to achieve? May be, people can help you with different options.

share|improve this answer
1  
You shouldn't write comments as an answer. – Marko Topolnik Nov 15 '12 at 14:33
Agreed. But doesn't allow me to add as a comment because of the starter status in stackoverflow :(. – muruga Nov 15 '12 at 19:26
As of two hours ago, that is not true anymore :) The threshold is 50. – Marko Topolnik Nov 15 '12 at 19:29

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.