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

Priority Queue implementation and operations #121

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

Ps1231
Copy link

@Ps1231 Ps1231 commented Oct 30, 2022

Priority Queue is an abstract data type which is a collection of elements where the elements have different priority levels. The elements with higher priority is processed before any element of lower priority. If there are elements with the same priority then the element added first in the queue would get processed first. Here this implementation has operations of addition, deletion, display, and sorting according to priority .

Priority Queue is an abstract data type which is a collection of elements where the elements have different priority levels. The elements with higher priority is processed before any element of lower priority. If there are elements with the same priority then the element added first in the queue would get processed first. Here this implementation has operations of addition,  deletion,  display, and sorting according to priority .
@Ps1231
Copy link
Author

Ps1231 commented Oct 30, 2022

Hey @CODING-Enthusiast9857 , pushed it in C++ folder of programs folder. Please review my PR and suggest changes if any.

Copy link
Owner

@CODING-Enthusiast9857 CODING-Enthusiast9857 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Ps1231

  • Please move your code to Source codes/Data Structures/C++ folder

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants