Skip to content

Commit 43bbff1

Browse files
authored
Update Queue.md
1 parent 77deb7a commit 43bbff1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Queue.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ A queue is an object (an abstract data structure - ADT) that allows the followin
1818
Get the front item from queue.
1919

2020
```c
21-
ghjjbffcvgh
21+
ghjjbffcvghygdcgh
2222
```
2323
### Rear:
2424
Get the last item from queue.
2525

2626
```c
27-
ddvvbbhugg
27+
ddvvbbhuggtfdcbhhg
2828
```
2929
### Enqueue:
3030
Add an element to the end of the queue. If the queue is full, then it is said to be an Overflow condition.
@@ -36,7 +36,7 @@ If the item is to be inserted as the first element in the list, in that case set
3636
Otherwise keep increasing the value of rear and insert each element one by one having rear as the index.
3737

3838
```c
39-
fgbhhhvv
39+
fgbhhhvvggxcc
4040
```
4141

4242
### Dequeue:
@@ -47,7 +47,7 @@ If, the value of front is -1 or value of front is greater than rear , write an u
4747
Otherwise, keep increasing the value of front and return the item stored at the front end of the queue at each time.
4848

4949
```c
50-
rggcccv
50+
rggcccvhuvvv
5151
```
5252

5353
### IsEmpty/ IsFull:

0 commit comments

Comments
 (0)