The link http://download.oracle.com/javase/6/docs/api/java/util/concurrent/package-summary.html describes several interesting data structures like concurrent skip-list. Is there any known reliable open source representation of these?

link|improve this question

69% accept rate
Why do you need open source? Do you need to make changes? – Kathy Van Stone Oct 26 '10 at 15:22
@Kathy Need to make some design choices, and wanted to look at how things are done in open source. – Fanatic23 Oct 27 '10 at 13:40
feedback

1 Answer

up vote 2 down vote accepted

You can have a look at the EDU.oswego.cs.dl.util.concurrent package upon which those classes are based (although this library is in maintenance mode only now).

Of course, you can also have a look at the OpenJDK source for a more recent version.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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