Class MaxHeap<T>

Type Parameters

  • T = number

Hierarchy

Constructors

  • The constructor initializes a PriorityQueue with a custom comparator function.

    Type Parameters

    • T = number

    Parameters

    • Optional options: HeapOptions<T>

      The options parameter is an optional object that can be passed to the constructor. It is of type HeapOptions<T>, which is a generic type that represents the options for the heap.

    Returns MaxHeap<T>

Properties

_priorityExtractor: ((val) => number)

Type declaration

    • (val): number
    • Parameters

      • val: T

      Returns number

Accessors

  • get priorityExtractor(): ((val) => number)
  • Returns ((val) => number)

      • (val): number
      • Parameters

        • val: T

        Returns number

  • get size(): number
  • The function returns the size of a priority queue.

    Returns number

    The size of the priority queue.

Methods

  • The add function adds an val to a priority queue with an optional priority value.

    Parameters

    • Optional priority: number

      The priority parameter is an optional number that represents the priority of the val being added to the heap. If the val parameter is a number, then the priority parameter is set to the value of val. If the val parameter is not a number, then the

    • Optional val: T

      The val parameter represents the value that you want to add to the heap. It can be of any type.

    Returns Heap<T>

    The add method returns the instance of the Heap class.

    Throws

    if priority is not a valid number

  • The function checks if a given node or value exists in the priority queue.

    Parameters

    • node: T | HeapItem<T>

      The parameter node can be of type T or HeapItem<T>.

    Returns boolean

    a boolean value.

  • The function checks if a priority queue is empty.

    Returns boolean

    A boolean value indicating whether the size of the priority queue is less than 1.

  • The peek function returns the top item in the priority queue without removing it.

    Parameters

    • Optional isItem: undefined

    Returns undefined | T

    The peek() method is returning either a HeapItem<T> object or null.Returns an val with the highest priority in the queue

  • The peek function returns the top item in the priority queue without removing it.

    Parameters

    • isItem: false

    Returns undefined | T

    The peek() method is returning either a HeapItem<T> object or null.Returns an val with the highest priority in the queue

  • The peek function returns the top item in the priority queue without removing it.

    Parameters

    • isItem: true

    Returns null | HeapItem<T>

    The peek() method is returning either a HeapItem<T> object or null.Returns an val with the highest priority in the queue

  • The peekLast function returns the last item in the heap.

    Parameters

    • Optional isItem: undefined

    Returns undefined | T

    The method peekLast() returns either a HeapItem<T> object or null.Returns an val with the lowest priority in the queue

  • The peekLast function returns the last item in the heap.

    Parameters

    • isItem: false

    Returns undefined | T

    The method peekLast() returns either a HeapItem<T> object or null.Returns an val with the lowest priority in the queue

  • The peekLast function returns the last item in the heap.

    Parameters

    • isItem: true

    Returns null | HeapItem<T>

    The method peekLast() returns either a HeapItem<T> object or null.Returns an val with the lowest priority in the queue

  • The poll function returns the top item from a priority queue or null if the queue is empty.Removes and returns an val with the highest priority in the queue

    Parameters

    • Optional isItem: undefined

    Returns undefined | T

    either a HeapItem object or null.

  • The poll function returns the top item from a priority queue or null if the queue is empty.Removes and returns an val with the highest priority in the queue

    Parameters

    • isItem: false

    Returns undefined | T

    either a HeapItem object or null.

  • The poll function returns the top item from a priority queue or null if the queue is empty.Removes and returns an val with the highest priority in the queue

    Parameters

    • isItem: true

    Returns null | HeapItem<T>

    either a HeapItem object or null.

  • The function sorts the elements in the priority queue and returns either the sorted items or their values depending on the value of the isItem parameter.

    Parameters

    • Optional isItem: undefined

      The isItem parameter is a boolean flag that indicates whether the sorted result should be an array of HeapItem<T> objects or an array of the values (T) of those objects. If isItem is true, the sorted result will be an array of HeapItem @returns an array of either HeapItem, null, T, or undefined` values.

    Returns (undefined | T)[]

  • The function sorts the elements in the priority queue and returns either the sorted items or their values depending on the value of the isItem parameter.

    Parameters

    • isItem: false

      The isItem parameter is a boolean flag that indicates whether the sorted result should be an array of HeapItem<T> objects or an array of the values (T) of those objects. If isItem is true, the sorted result will be an array of HeapItem @returns an array of either HeapItem, null, T, or undefined` values.

    Returns (undefined | T)[]

  • The function sorts the elements in the priority queue and returns either the sorted items or their values depending on the value of the isItem parameter.

    Parameters

    • isItem: true

      The isItem parameter is a boolean flag that indicates whether the sorted result should be an array of HeapItem<T> objects or an array of the values (T) of those objects. If isItem is true, the sorted result will be an array of HeapItem @returns an array of either HeapItem, null, T, or undefined` values.

    Returns (null | HeapItem<T>)[]

  • The toArray function returns an array of HeapItem<T> objects.

    Parameters

    • Optional isItem: undefined

    Returns (undefined | T)[]

    An array of HeapItem objects.Returns a sorted list of vals

  • The toArray function returns an array of HeapItem<T> objects.

    Parameters

    • isItem: false

    Returns (undefined | T)[]

    An array of HeapItem objects.Returns a sorted list of vals

  • The toArray function returns an array of HeapItem<T> objects.

    Parameters

    • isItem: true

    Returns (null | HeapItem<T>)[]

    An array of HeapItem objects.Returns a sorted list of vals

Generated using TypeDoc