From bf11f7596d0278614cf0c5049571b6ce42077b69 Mon Sep 17 00:00:00 2001 From: Saumya Gupta <142958342+ISaumya1011@users.noreply.github.com> Date: Wed, 25 Oct 2023 22:29:00 +0530 Subject: [PATCH] Update README.md Hi, I want to contribute to this Repository. I have already added the various types of the Queues in this ReadMe file. Please see if these changes can be merged against HacktoberFest 2023. Thank you so much. Saumya --- Queue/README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Queue/README.md b/Queue/README.md index 575de28..7b2f663 100644 --- a/Queue/README.md +++ b/Queue/README.md @@ -10,6 +10,15 @@ There are two ends in the queue collection, i.e., front & rear. Queue has two en This section contains a lot of important algorithms that help us to use sorting algorithms in various scenarios. +## Types Of Queues +* Input Restricted Queue (this is a Simple Queue) +* Output Restricted Queue (this is also a Simple Queue) +* Circular Queue +* Double Ended Queue (Deque) +* Priority Queue + - Ascending Priority Queue + - Descending Priority Queue + ## Reference * *