Editing
Heaps
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
'''Heap''' is a specialized tree-based data structure that satisfies the heap property, which is a partial ordering of elements in a tree. It is used to efficiently access the highest- or lowest-ranked elements within a dataset. Heaps are commonly implemented as binary trees and can be visualized as almost complete trees with nodes filled from top to bottom and left to right. == Types of Heaps == There are two main types of heaps: * '''Max-heap:''' In a max-heap, the parent nodes have a greater value than their children. The largest element is at the root of the heap. * '''Min-heap:''' In a min-heap, the parent nodes have a smaller value than their children. The smallest element is at the root of the heap. == Operations == === Insertion === To insert an element into a heap, the element is first added at the end of the heap, and then the heap property is restored by "bubbling up" the element to its correct position. * Time complexity: O(log n) === Deletion === To delete the highest-ranked element (maximum in max-heap or minimum in min-heap), the root element is removed, and the last element in the heap is moved to the root. Then, the heap property is restored by "bubbling down" the element to its correct position. * Time complexity: O(log n) === Peek === To retrieve the highest-ranked element without removing it, the root element of the heap is returned. * Time complexity: O(1) === Heapify === To transform an unordered array into a valid heap, the "heapify" operation is performed. Heapify processes the array elements in reverse order and ensures that the heap property is satisfied for each element. * Time complexity: O(n) == Applications == Heaps are commonly used in the following applications: * Implementing priority queues * Finding the k-th largest or smallest element in a dataset * Sorting algorithms, such as heapsort == Example Heaps Problems == * Implementing a priority queue * K-th largest element in an array * Merge k sorted lists * Median in a data stream == See Also == * [[:Category:Data_Structures|Data Structures]] * [[:Category:Algorithms|Algorithms]] [[category:Heap]]
Summary:
Please note that all contributions to Wiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
My wiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information