vote up 7 vote down star
2

I'm a relatively new Java programmer coming from C++/STL, and am looking for a class with these characteristics (which the C++ std::deque has, as I understand it):

  1. O(1) performance for insertion/removal at the beginning/end
  2. O(1) performance for lookup by index
  3. are growable collections (don't need fixed size bounds)

Is there a Java equivalent to this? I found the Java 1.6 [ArrayDeque] class which has the insert/removal and growable characteristics, but don't seem to have lookup-by-index unless you call toArray() which would not be O(1).

flag

58% accept rate

4 Answers

vote up 7 vote down check

Primitive Collections for Java has an ArrayDeque with a get(int idx) method.

http://sourceforge.net/projects/pcj

I can't vouch for the quality of this project though.

An alternative would be to get the JDK ArrayDeque source and add the get(int idx) method yourself. Should be relatively easy.

EDIT: If you intend to use the deque in a highly multi-threaded manner, I would go the "patch the JDK's ArrayDeque" route. This implementation has been tested thoroughly and is used in the new java.util.concurrent ForkJoin framework.

link|flag
Source for GNU classpath ArrayDeque is here: fuseyism.com/classpath/doc/…. It should be reasonably easy to add get(i), or even to make it implement List<E> – tgamblin Dec 8 '08 at 16:49
PCJ only works for primitive types, which rather limits its usefulness. – mmyers Dec 8 '08 at 17:01
Interesting... The GNU stuff scares me (although the license for the ArrayDeque code you list shows Creative Commons... strange) because I'm working in a commercial environment and can't use any GPL code. – Jason S Dec 8 '08 at 17:07
You can use the JSR166 backport at: backport-jsr166.sourceforge.net It's released into the public domain; no licensing issues. – bajafresh4life Dec 8 '08 at 18:33
vote up 1 vote down

(comment removed by author)

link|flag
vote up 0 vote down

Interesting... I was just finishing reading Java Generics and Collections and it has a brief discussion of this kind of collection including a link to the Java Specialists' Newsletter which includes a CircularArrayList that might do what I need.

link|flag
vote up 0 vote down

My default approach would be to hack together my own class, with ArrayList as an underlying implementation (e.g. map my own class's indices to ArrayList indices)... but I hate reinventing the wheel especially when there's a good chance of screwing up...

link|flag
I deleted my post about HashMap, but it would be an improvement over ArrayList for arbitrary insertions I think. – Daddy Warbox Dec 8 '08 at 17:18

Your Answer

Get an OpenID
or

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