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

Add Max Heap Implementation #1164

Closed
2 tasks done
karthikyandrapu opened this issue Oct 23, 2024 · 2 comments
Closed
2 tasks done

Add Max Heap Implementation #1164

karthikyandrapu opened this issue Oct 23, 2024 · 2 comments

Comments

@karthikyandrapu
Copy link
Contributor

karthikyandrapu commented Oct 23, 2024

Max Heap Implementation

About:

  1. The program implements a Max Heap data structure. A max heap is a binary tree where the value of each node is greater than or equal to its children, ensuring that the maximum value is always at the root.
  2. It provides basic operations like inserting elements, removing the maximum element, and retrieving the top (maximum) element.
  3. Heapify operations: Elements are inserted or removed while maintaining the heap property through up-heapify (for insertions) and down-heapify (for removals).
  4. The program is interactive, allowing users to add elements to the heap, display the top element, and pop elements, adjusting the heap size dynamically.

Labels:

gssoc-ext, hacktoberfest

Assignees:

  • Contributor in GSSoC-ext
  • Want to work on it
@shiv-0101
Copy link

Wondering, why it's no in there yet..

Would love to add it...assign it to me as well..

@pankaj-bind
Copy link
Collaborator

@karthikyandrapu assigned

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants