Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated README.md of Queues #98

Merged
merged 1 commit into from
Oct 25, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Queue/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
* <https://www.javatpoint.com/java-queue>
* <https://en.wikipedia.org/wiki/Queue>