查看原文
其他

如何手撸一个队列?队列详解和面试题汇总(含答案)

老王著 Java中文社群 2021-06-30

队列(Queue):与栈相对的一种数据结构, 集合(Collection)的一个子类。队列允许在一端进行插入操作,而在另一端进行删除操作的线性表,栈的特点是后进先出,而队列的特点是先进先出。队列的用处很大,比如实现消息队列。Queue 类关系图,如下图所示:注:为了让读者更直观地理解,上图为精简版的 Queue 类关系图。本文如无特殊说明,内容都是基于 Java 1.8 版本。 

队列(Queue)

1)Queue 分类

从上图可以看出 Queue 大体可分为以下三类。

  1. 双端队列:双端队列(Deque)是 Queue 的子类也是 Queue 的补充类,头部和尾部都支持元素插入和获取。

  2. 阻塞队列:阻塞队列指的是在元素操作时(添加或删除),如果没有成功,会阻塞等待执行。例如,当添加元素时,如果队列元素已满,队列会阻塞等待直到有空位时再插入。

  3. 非阻塞队列:非阻塞队列和阻塞队列相反,会直接返回操作的结果,而非阻塞等待。双端队列也属于非阻塞队列。

2)Queue 方法说明

Queue 常用方法,如下图所示:

方法说明:

  • add(E):添加元素到队列尾部,成功返回 true,队列超出时抛出异常;

  • offer(E):添加元素到队列尾部,成功返回 true,队列超出时返回 false;

  • remove():删除元素,成功返回 true,失败返回 false;

  • poll():获取并移除此队列的第一个元素,若队列为空,则返回 null;

  • peek():获取但不移除此队列的第一个元素,若队列为空,则返回 null;

  • element():获取但不移除此队列的第一个元素,若队列为空,则抛异常。

3)Queue 使用实例

  1. Queue<String> linkedList = new LinkedList<>();

  2. linkedList.add("Dog");

  3. linkedList.add("Camel");

  4. linkedList.add("Cat");

  5. while (!linkedList.isEmpty()) {

  6. System.out.println(linkedList.poll());

  7. }

程序执行结果:

Dog Camel Cat

阻塞队列

1)BlockingQueue

BlockingQueue 在 java.util.concurrent 包下,其他阻塞类都实现自 BlockingQueue 接口,BlockingQueue 提供了线程安全的队列访问方式,当向队列中插入数据时,如果队列已满,线程则会阻塞等待队列中元素被取出后再插入;当从队列中取数据时,如果队列为空,则线程会阻塞等待队列中有新元素再获取。BlockingQueue 核心方法插入方法:

  • add(E):添加元素到队列尾部,成功返回 true,队列超出时抛出异常;

  • offer(E):添加元素到队列尾部,成功返回 true,队列超出时返回 false ;

  • put(E):将元素插入到队列的尾部,如果该队列已满,则一直阻塞。

删除方法:

  • remove(Object):移除指定元素,成功返回 true,失败返回 false;

  • poll(): 获取并移除队列的第一个元素,如果队列为空,则返回 null;

  • take():获取并移除队列第一个元素,如果没有元素则一直阻塞。

检查方法:

  • peek():获取但不移除队列的第一个元素,若队列为空,则返回 null。

2)LinkedBlockingQueue

LinkedBlockingQueue 是一个由链表实现的有界阻塞队列,容量默认值为 Integer.MAX_VALUE,也可以自定义容量,建议指定容量大小,默认大小在添加速度大于删除速度情况下有造成内存溢出的风险,LinkedBlockingQueue 是先进先出的方式存储元素。

3)ArrayBlockingQueue

ArrayBlockingQueue 是一个有边界的阻塞队列,它的内部实现是一个数组。它的容量是有限的,我们必须在其初始化的时候指定它的容量大小,容量大小一旦指定就不可改变。ArrayBlockingQueue 也是先进先出的方式存储数据,ArrayBlockingQueue 内部的阻塞队列是通过重入锁 ReenterLock 和 Condition 条件队列实现的,因此 ArrayBlockingQueue 中的元素存在公平访问与非公平访问的区别,对于公平访问队列,被阻塞的线程可以按照阻塞的先后顺序访问队列,即先阻塞的线程先访问队列。而非公平队列,当队列可用时,阻塞的线程将进入争夺访问资源的竞争中,也就是说谁先抢到谁就执行,没有固定的先后顺序。示例代码如下:

  1. // 默认非公平阻塞队列

  2. ArrayBlockingQueue queue = new ArrayBlockingQueue(6);

  3. // 公平阻塞队列

  4. ArrayBlockingQueue queue2 = new ArrayBlockingQueue(6,true);


  5. // ArrayBlockingQueue 源码展示

  6. public ArrayBlockingQueue(int capacity) {

  7. this(capacity, false);

  8. }

  9. public ArrayBlockingQueue(int capacity, boolean fair) {

  10. if (capacity <= 0)

  11. throw new IllegalArgumentException();

  12. this.items = new Object[capacity];

  13. lock = new ReentrantLock(fair);

  14. notEmpty = lock.newCondition();

  15. notFull = lock.newCondition();

  16. }

4)DelayQueue

DelayQueue 是一个支持延时获取元素的无界阻塞队列,队列中的元素必须实现 Delayed 接口,在创建元素时可以指定延迟时间,只有到达了延迟的时间之后,才能获取到该元素。实现了 Delayed 接口必须重写两个方法 ,getDelay(TimeUnit) 和 compareTo(Delayed),如下代码所示:

  1. class DelayElement implements Delayed {

  2. @Override

  3. // 获取剩余时间

  4. public long getDelay(TimeUnit unit) {

  5. // do something

  6. }

  7. @Override

  8. // 队列里元素的排序依据

  9. public int compareTo(Delayed o) {

  10. // do something

  11. }

  12. }

DelayQueue 使用的完整示例,请参考以下代码:

  1. public class DelayTest {

  2. public static void main(String[] args) throws InterruptedException {

  3. DelayQueue delayQueue = new DelayQueue();

  4. delayQueue.put(new DelayElement(1000));

  5. delayQueue.put(new DelayElement(3000));

  6. delayQueue.put(new DelayElement(5000));

  7. System.out.println("开始时间:" + DateFormat.getDateTimeInstance().format(new Date()));

  8. while (!delayQueue.isEmpty()){

  9. System.out.println(delayQueue.take());

  10. }

  11. System.out.println("结束时间:" + DateFormat.getDateTimeInstance().format(new Date()));

  12. }


  13. static class DelayElement implements Delayed {

  14. // 延迟截止时间(单面:毫秒)

  15. long delayTime = System.currentTimeMillis();

  16. public DelayElement(long delayTime) {

  17. this.delayTime = (this.delayTime + delayTime);

  18. }

  19. @Override

  20. // 获取剩余时间

  21. public long getDelay(TimeUnit unit) {

  22. return unit.convert(delayTime - System.currentTimeMillis(), TimeUnit.MILLISECONDS);

  23. }

  24. @Override

  25. // 队列里元素的排序依据

  26. public int compareTo(Delayed o) {

  27. if (this.getDelay(TimeUnit.MILLISECONDS) > o.getDelay(TimeUnit.MILLISECONDS)) {

  28. return 1;

  29. } else if (this.getDelay(TimeUnit.MILLISECONDS) < o.getDelay(TimeUnit.MILLISECONDS)) {

  30. return -1;

  31. } else {

  32. return 0;

  33. }

  34. }

  35. @Override

  36. public String toString() {

  37. return DateFormat.getDateTimeInstance().format(new Date(delayTime));

  38. }

  39. }

  40. }

程序执行结果:

开始时间:2019-6-13 20:40:38 2019-6-13 20:40:39 2019-6-13 20:40:41 2019-6-13 20:40:43 结束时间:2019-6-13 20:40:43

非阻塞队列

ConcurrentLinkedQueue 是一个基于链接节点的无界线程安全队列,它采用先进先出的规则对节点进行排序,当我们添加一个元素的时候,它会添加到队列的尾部;当我们获取一个元素时,它会返回队列头部的元素。它的入队和出队操作均利用 CAS(Compare And Set)更新,这样允许多个线程并发执行,并且不会因为加锁而阻塞线程,使得并发性能更好。ConcurrentLinkedQueue 使用示例:

  1. ConcurrentLinkedQueue concurrentLinkedQueue = new ConcurrentLinkedQueue();

  2. concurrentLinkedQueue.add("Dog");

  3. concurrentLinkedQueue.add("Cat");

  4. while (!concurrentLinkedQueue.isEmpty()) {

  5. System.out.println(concurrentLinkedQueue.poll());

  6. }

执行结果:

Dog Cat

可以看出不管是阻塞队列还是非阻塞队列,使用方法都是类似的,区别是底层的实现方式。

优先级队列

PriorityQueue 一个基于优先级堆的无界优先级队列。优先级队列的元素按照其自然顺序进行排序,或者根据构造队列时提供的 Comparator 进行排序,具体取决于所使用的构造方法。优先级队列不允许使用 null 元素。PriorityQueue  代码使用示例

  1. Queue<Integer> priorityQueue = new PriorityQueue(new Comparator<Integer>() {

  2. @Override

  3. public int compare(Integer o1, Integer o2) {

  4. // 非自然排序,数字倒序

  5. return o2 - o1;

  6. }

  7. });

  8. priorityQueue.add(3);

  9. priorityQueue.add(1);

  10. priorityQueue.add(2);

  11. while (!priorityQueue.isEmpty()) {

  12. Integer i = priorityQueue.poll();

  13. System.out.println(i);

  14. }

程序执行的结果是:

3 2 1

PriorityQueue 注意的点

  1. PriorityQueue 是非线程安全的,在多线程情况下可使用 PriorityBlockingQueue 类替代;

  2. PriorityQueue 不允许插入 null 元素。

相关面试题

1.ArrayBlockingQueue 和 LinkedBlockingQueue 的区别是什么?

答:ArrayBlockingQueue 和 LinkedBlockingQueue 都实现自阻塞队列 BlockingQueue,它们的区别主要体现在以下几个方面:

  • ArrayBlockingQueue 使用时必须指定容量值,LinkedBlockingQueue 可以不用指定;

  • ArrayBlockingQueue 的最大容量值是使用时指定的,并且指定之后就不允许修改;而 LinkedBlockingQueue 最大的容量为 Integer.MAX_VALUE;

  • ArrayBlockingQueue 数据存储容器是采用数组存储的;而 LinkedBlockingQueue 采用的是 Node 节点存储的。

2.LinkedList 中 add() 和 offer() 有什么关系?

答:add() 和 offer() 都是添加元素到队列尾部。offer 方法是基于 add 方法实现的,Offer 的源码如下:

  1. public boolean offer(E e) {

  2. return add(e);

  3. }

3.Queue 和 Deque 有什么区别?

答:Queue 属于一般队列,Deque 属于双端队列。一般队列是先进先出,也就是只有先进的才能先出;而双端队列则是两端都能插入和删除元素。

4.LinkedList 属于一般队列还是双端队列?

答:LinkedList 实现了 Deque 属于双端队列,因此拥有 addFirst(E)、addLast(E)、getFirst()、getLast() 等方法。

5.以下说法错误的是?

A:DelayQueue 内部是基于 PriorityQueue 实现的 B:PriorityBlockingQueue 不是先进先出的数据存储方式 C:LinkedBlockingQueue 容量是无限大的 D:ArrayBlockingQueue 内部的存储单元是数组,初始化时必须指定队列容量 答:C 题目解析:LinkedBlockingQueue 默认容量是 Integer.MAX_VALUE,并不是无限大的,源码如下图所示:

6.关于 ArrayBlockingQueue 说法不正确的是?

A:ArrayBlockingQueue 是线程安全的 B:ArrayBlockingQueue 元素允许为 null C:ArrayBlockingQueue 主要应用场景是“生产者-消费者”模型 D:ArrayBlockingQueue 必须显示地设置容量 答:B 题目解析:ArrayBlockingQueue 不允许元素为 null,如果添加一个 null 元素,会抛 NullPointerException 异常。

7.以下程序执行的结果是什么?

  1. PriorityQueue priorityQueue = new PriorityQueue();

  2. priorityQueue.add(null);

  3. System.out.println(priorityQueue.size());

答:程序执行报错,PriorityQueue 不能插入 null。

8.Java 中常见的阻塞队列有哪些?

答:Java 中常见的阻塞队列如下:

  • ArrayBlockingQueue,由数组结构组成的有界阻塞队列;

  • PriorityBlockingQueue,支持优先级排序的无界阻塞队列;

  • SynchronousQueue,是一个不存储元素的阻塞队列,会直接将任务交给消费者,必须等队列中的添加元素被消费后才能继续添加新的元素;

  • LinkedBlockingQueue,由链表结构组成的阻塞队列;

  • DelayQueue,支持延时获取元素的无界阻塞队列。

9.有界队列和无界队列有哪些区别?

答:有界队列和无界队列的区别如下:

  • 有界队列:有固定大小的队列叫做有界队列,比如:new ArrayBlockingQueue(6),6 就是队列的大小。

  • 无界队列:指的是没有设置固定大小的队列,这些队列的特点是可以直接入列,直到溢出。它们并不是真的无界,它们最大值通常为 Integer.MAXVALUE,只是平常很少能用到这么大的容量(超过 Integer.MAXVALUE),因此从使用者的体验上,就相当于 “无界”。

10.如何手动实现一个延迟消息队列?

答:说到延迟消息队列,我们应该可以第一时间想到要使用 DelayQueue 延迟队列来解决这个问题。实现思路,消息队列分为生产者和消费者,生产者用于增加消息,消费者用于获取并消费消息,我们只需要生产者把消息放入到 DelayQueue 队列并设置延迟时间,消费者循环使用 take() 阻塞获取消息即可。完整的实现代码如下:

  1. public class CustomDelayQueue {

  2. // 消息编号

  3. static AtomicInteger MESSAGENO = new AtomicInteger(1);


  4. public static void main(String[] args) throws InterruptedException {

  5. DelayQueue<DelayedElement> delayQueue = new DelayQueue<>();

  6. // 生产者1

  7. producer(delayQueue, "生产者1");

  8. // 生产者2

  9. producer(delayQueue, "生产者2");

  10. // 消费者

  11. consumer(delayQueue);

  12. }


  13. //生产者

  14. private static void producer(DelayQueue<DelayedElement> delayQueue, String name) {

  15. new Thread(new Runnable() {

  16. @Override

  17. public void run() {

  18. while (true) {

  19. // 产生 1~5 秒的随机数

  20. long time = 1000L * (new Random().nextInt(5) + 1);

  21. try {

  22. Thread.sleep(time);

  23. } catch (InterruptedException e) {

  24. e.printStackTrace();

  25. }

  26. // 组合消息体

  27. String message = String.format("%s,消息编号:%s 发送时间:%s 延迟:%s 秒",

  28. name, MESSAGENO.getAndIncrement(), DateFormat.getDateTimeInstance().format(new Date()), time / 1000);

  29. // 生产消息

  30. delayQueue.put(new DelayedElement(message, time));

  31. }

  32. }

  33. }).start();

  34. }


  35. //消费者

  36. private static void consumer(DelayQueue<DelayedElement> delayQueue) {

  37. new Thread(new Runnable() {

  38. @Override

  39. public void run() {

  40. while (true) {

  41. DelayedElement element = null;

  42. try {

  43. // 消费消息

  44. element = delayQueue.take();

  45. System.out.println(element);

  46. } catch (InterruptedException e) {

  47. e.printStackTrace();

  48. }

  49. }

  50. }

  51. }).start();

  52. }


  53. // 延迟队列对象

  54. static class DelayedElement implements Delayed {

  55. // 过期时间(单位:毫秒)

  56. long time = System.currentTimeMillis();

  57. // 消息体

  58. String message;

  59. // 参数:delayTime 延迟时间(单位毫秒)

  60. public DelayedElement(String message, long delayTime) {

  61. this.time += delayTime;

  62. this.message = message;

  63. }

  64. @Override

  65. // 获取过期时间

  66. public long getDelay(TimeUnit unit) {

  67. return unit.convert(time - System.currentTimeMillis(), TimeUnit.MILLISECONDS);

  68. }

  69. @Override

  70. // 队列元素排序

  71. public int compareTo(Delayed o) {

  72. if (this.getDelay(TimeUnit.MILLISECONDS) > o.getDelay(TimeUnit.MILLISECONDS))

  73. return 1;

  74. else if (this.getDelay(TimeUnit.MILLISECONDS) < o.getDelay(TimeUnit.MILLISECONDS))

  75. return -1;

  76. else

  77. return 0;

  78. }

  79. @Override

  80. public String toString() {

  81. // 打印消息

  82. return message + " |执行时间:" + DateFormat.getDateTimeInstance().format(new Date());

  83. }

  84. }

  85. }

以上程序支持多生产者,执行的结果如下:

生产者1,消息编号:1 发送时间:2019-6-12 20:38:37 延迟:2 秒 |执行时间:2019-6-12 20:38:39 生产者2,消息编号:2 发送时间:2019-6-12 20:38:37 延迟:2 秒 |执行时间:2019-6-12 20:38:39 生产者1,消息编号:3 发送时间:2019-6-12 20:38:41 延迟:4 秒 |执行时间:2019-6-12 20:38:45 生产者1,消息编号:5 发送时间:2019-6-12 20:38:43 延迟:2 秒 |执行时间:2019-6-12 20:38:45 ......

总结

队列(Queue)按照是否阻塞可分为:阻塞队列 BlockingQueue 和 非阻塞队列。其中,双端队列 Deque 也属于非阻塞队列,双端队列除了拥有队列的先进先出的方法之外,还拥有自己独有的方法,如 addFirst()、addLast()、getFirst()、getLast() 等,支持首未插入和删除元素。队列中比较常用的两个队列还有 PriorityQueue(优先级队列)和 DelayQueue(延迟队列),可使用延迟队列来实现延迟消息队列,这也是面试中比较常考的问题之一。需要面试朋友对延迟队列一定要做到心中有数,动手写一个消息队列也是非常有必要的。

本文来自:《Java面试全解析》

【END】

关注下方二维码,订阅更多精彩内容

    您可能也对以下帖子感兴趣

    文章有问题?点此查看未经处理的缓存