Skip to content

Commit a54e722

Browse files
author
Jake Romer
authored
Fix links to related articles
Fixes links to Linked List, Ring Buffer, and Priority Queue directories.
1 parent ea0ec01 commit a54e722

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Queue/README.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -255,8 +255,8 @@ The `nil` objects at the front have been removed and the array is no longer wast
255255

256256
## See also
257257

258-
There are many other ways to create a queue. Alternative implementations use a [linked list](../Linked List/), a [circular buffer](../Ring Buffer/), or a [heap](../Heap/).
258+
There are many other ways to create a queue. Alternative implementations use a [linked list](../Linked%20List/), a [circular buffer](../Ring%20Buffer/), or a [heap](../Heap/).
259259

260-
Variations on this theme are [deque](../Deque/), a double-ended queue where you can enqueue and dequeue at both ends, and [priority queue](../Priority Queue/), a sorted queue where the "most important" item is always at the front.
260+
Variations on this theme are [deque](../Deque/), a double-ended queue where you can enqueue and dequeue at both ends, and [priority queue](../Priority%20Queue/), a sorted queue where the "most important" item is always at the front.
261261

262262
*Written for Swift Algorithm Club by Matthijs Hollemans*

0 commit comments

Comments
 (0)