Skip to content

Commit 57a7392

Browse files
Update README.md
1 parent 5edcc29 commit 57a7392

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

queue/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*java.util.Deque is a subiterface of java.utilQueue*
1515

1616
- java.util.ArrayDeque, **not thread-safe**, [example](https://github.com/AnghelLeonard/Data-Structures/tree/master/queue/QueueViaArrayDeque)
17-
- java.util.concurrency.ArrayBlockingQueue, **thread-safe**, [example](https://github.com/AnghelLeonard/Java-Data-Structures/tree/master/queue/QueueViaArrayBlockingQueueProducerConsumer)
18-
- java.util.concurrent.ConcurrentLinkedDeque and java.util.ConcurrentLinkedQueue, thread-safe, [example](https://github.com/AnghelLeonard/Data-Structures/tree/master/queue/QueueViaConcurrentLinkedDeque)
19-
- java.util.LinkedList, not thread-safe and not efficient, [example](https://github.com/AnghelLeonard/Data-Structures/tree/master/queue/QueueViaLinkedList)
17+
- java.util.concurrent.ArrayBlockingQueue, **thread-safe**, [example](https://github.com/AnghelLeonard/Java-Data-Structures/tree/master/queue/QueueViaArrayBlockingQueueProducerConsumer)
18+
- java.util.concurrent.ConcurrentLinkedDeque and java.util.ConcurrentLinkedQueue, **thread-safe**, [example](https://github.com/AnghelLeonard/Data-Structures/tree/master/queue/QueueViaConcurrentLinkedDeque)
19+
- java.util.LinkedList, **not thread-safe and not efficient**, [example](https://github.com/AnghelLeonard/Data-Structures/tree/master/queue/QueueViaLinkedList)
2020

0 commit comments

Comments
 (0)