UNPKG

@datastructures-js/heap

Version:

Min/Max Heap & Heap Sort implementation in javascript

26 lines (24 loc) 673 B
export interface ICompare<T> { (a: T, b: T): number; } export class Heap<T> implements Iterable<T> { constructor(comparator: ICompare<T>, values?: T[], leaf?: T); toArray(): T[]; [Symbol.iterator](): Iterator<T, any, undefined>; insert(value: T): Heap<T>; push(value: T): Heap<T>; extractRoot(): T | null; pop(): T | null; sort(): T[]; fix(): Heap<T>; isValid(): boolean; clone(): Heap<T>; root(): T | null; top(): T | null; leaf(): T | null; size(): number; isEmpty(): boolean; clear(): void; static heapify<T>(values: T[], comparator: ICompare<T>): Heap<T>; static isHeapified<T>(values: T[], comparator: ICompare<T>): boolean; }