Skip to content

Commit 3a32b8b

Browse files
marcosscarpimPabloProta
authored andcommitted
Update index.md
1 parent 8fb4fcf commit 3a32b8b

File tree

1 file changed

+2
-2
lines changed
  • content/data-structures/linear/qeue

1 file changed

+2
-2
lines changed

content/data-structures/linear/qeue/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ grand_parent: Data Structures
66
nav_order: 4
77
---
88
<script src="https://unpkg.com/kotlin-playground@1" data-selector="code"></script>
9-
# Qeue
9+
# Queue
1010
> A Queue is defined as a linear data structure that is open at both ends and the operations are performed in First In First Out (FIFO) order.
1111
1212
We define a queue to be a list in which all additions to the list are made at one end, and all deletions from the list are made at the other end. The element which is first pushed into the order, the operation is first performed on that.
@@ -138,4 +138,4 @@ fun main() {
138138

139139
#### REFERENCES:
140140
[https://www.geeksforgeeks.org/queue-data-structure/](https://www.geeksforgeeks.org/queue-data-structure/)
141-
[https://www.prepbytes.com/blog/queues/applications-of-queue-data-structure/#:~:text=When%20any%20resource%20is%20shared,queue%2C%20doubly%20ended%20priority%20queue.](https://www.prepbytes.com/blog/queues/applications-of-queue-data-structure/#:~:text=When%20any%20resource%20is%20shared,queue%2C%20doubly%20ended%20priority%20queue.)
141+
[https://www.prepbytes.com/blog/queues/applications-of-queue-data-structure/#:~:text=When%20any%20resource%20is%20shared,queue%2C%20doubly%20ended%20priority%20queue.](https://www.prepbytes.com/blog/queues/applications-of-queue-data-structure/#:~:text=When%20any%20resource%20is%20shared,queue%2C%20doubly%20ended%20priority%20queue.)

0 commit comments

Comments
 (0)