Вопрос

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