문제

I am using trove 3.0.3 library in java project. All classes in gnu.trove.queue (TByteQueue, TDoubleQueue ...) are all interfaces. Where I can find implementation of Queue classes?

도움이 되었습니까?

해결책 2

Queues are not yet implemented in Trove.

다른 팁

You can emulate simple Queue of double using TDoubleLinkedList. It can insert to tail and to head in O(1) time.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top