UNPKG
js-stl
Version:
latest (0.0.6)
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Standard TypeScript Library
github.com/vovazolotoy/TypeScript-STL
vovazolotoy/TypeScript-STL
js-stl
/
Datastructures
/
MaxHeap.ts
14 lines
(10 loc)
•
227 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
Heap
=
require
(
'./Heap'
);
/** * The MaxHeap class provides the main functionality of a heap, keeping the maximum on the top. * *
@class
MaxHeap
*
@extends
Heap
*/
class
MaxHeap
extends
Heap
{ }
export
=
MaxHeap
;