About 21,400 results
Open links in new tab
  1. Binary Heap - GeeksforGeeks

    Feb 4, 2026 · There are two types of binary heaps: Min Heap and Max Heap. Min Heap: The value of the root node is the smallest, …

  2. Introduction to Max-Heap - GeeksforGeeks

    Jul 10, 2026 · A Max-Heap is a Data Structure with the following properties: It is a Complete Binary Tree. The value of the root node …

  3. Binary heap - Wikipedia

    The Build-Max-Heap function that follows, converts an array A which stores a complete binary tree with n nodes to a max-heap by …

  4. Max Heap Visualizer | Interactive Visualization

    What is a Max Heap? A max heap is a complete binary tree where every parent node is greater than or equal to its children. The root …

  5. Heap (data structure) - Wikipedia

    Heaps are also crucial in several efficient graph algorithms such as Dijkstra's algorithm. When a heap is a complete binary tree, it …

  6. What is a Max-Heap? Complete Guide with Examples - Codecademy

    A max heap is a useful binary tree data structure where each parent node is equal to or greater than its child nodes, making the …

  7. Binary Heap Visualizer | Interactive Min/Max Heap

    A Binary Heap is a complete binary tree (typically stored in an array), where each node satisfies the heap property: in a max-heap, …

  8. You can view a max heap as a binary tree, where each node has two (or fewer) children, and the key of each node (i.e. the number …

  9. Heap Data Structure - Programiz

    Heap Data Structure Heap data structure is a complete binary tree that satisfies the heap property, where any given node is always …

  10. Binary Heaps - Online Tutorials Library

    For a Max-Heap, the root element will be the maximum element in the tree. The left child will be less than the parent and the right …