在TestQueue类里面创建一个链队列,把数字0-9按顺序入队列,并对其进行遍历,输出遍历结果
时间: 2024-05-10 19:20:40 浏览: 94
链队列的实现
5星 · 资源好评率100%
```java
public class TestQueue {
public static void main(String[] args) {
LinkedQueue<Integer> queue = new LinkedQueue<>();
for (int i = 0; i < 10; i++) {
queue.enqueue(i);
}
while (!queue.isEmpty()) {
System.out.print(queue.dequeue() + " ");
}
}
}
```
输出结果:
```
0 1 2 3 4 5 6 7 8 9
```
阅读全文