Skip to content

Commit 5edcc29

Browse files
Update README.md
1 parent 5d40126 commit 5edcc29

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

queue/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
*java.util.Deque ("double ended queue"): add things to either end, and take them from either end*\
1414
*java.util.Deque is a subiterface of java.utilQueue*
1515

16-
- java.util.ArrayDeque, not thread-safe, [example](https://github.com/AnghelLeonard/Data-Structures/tree/master/queue/QueueViaArrayDeque)
16+
- 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)
1718
- java.util.concurrent.ConcurrentLinkedDeque and java.util.ConcurrentLinkedQueue, thread-safe, [example](https://github.com/AnghelLeonard/Data-Structures/tree/master/queue/QueueViaConcurrentLinkedDeque)
1819
- java.util.LinkedList, not thread-safe and not efficient, [example](https://github.com/AnghelLeonard/Data-Structures/tree/master/queue/QueueViaLinkedList)
1920

0 commit comments

Comments
 (0)