Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
标准 Java 不提供在数组顶部实现Queue接口的对象,并在添加太多对象时自动调整该底层数组的大小(我不想要链表)。
是否有任何开源库提供此实现,或者我应该自己实现它?
更新
Java 6 (ArrayDeque) 中有一个可用的类,出于某种原因,我正在阅读 Java 5 文档。
使用ArrayDeque。它在调整大小的数组之上实现了队列。