heap-typed 1.19.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/heap.d.ts ADDED
@@ -0,0 +1,88 @@
1
+ /**
2
+ * data-structure-typed
3
+ *
4
+ * @author Tyler Zeng
5
+ * @copyright Copyright (c) 2022 Tyler Zeng <zrwusa@gmail.com>
6
+ * @license MIT License
7
+ */
8
+ import { PriorityQueue } from 'data-structure-typed';
9
+ import type { HeapOptions } from 'data-structure-typed';
10
+ export declare class HeapItem<T = number> {
11
+ /**
12
+ * The constructor function initializes an instance of a class with a priority and a value.
13
+ * @param {number} priority - The `priority` parameter is a number that represents the priority of the value. It is
14
+ * optional and has a default value of `NaN`.
15
+ * @param {T | null} [val=null] - The `val` parameter is of type `T | null`, which means it can accept a value of type
16
+ * `T` or `null`.
17
+ */
18
+ constructor(priority?: number, val?: T | null);
19
+ private _priority;
20
+ get priority(): number;
21
+ set priority(value: number);
22
+ private _val;
23
+ get val(): T | null;
24
+ set val(value: T | null);
25
+ }
26
+ export declare abstract class Heap<T = number> {
27
+ /**
28
+ * The function is a constructor for a class that initializes a priority callback function based on the
29
+ * options provided.
30
+ * @param [options] - An optional object that contains configuration options for the Heap.
31
+ */
32
+ protected constructor(options?: HeapOptions<T>);
33
+ protected abstract _pq: PriorityQueue<HeapItem<T>>;
34
+ get pq(): PriorityQueue<HeapItem<T>>;
35
+ protected _priorityExtractor: (val: T) => number;
36
+ get priorityExtractor(): (val: T) => number;
37
+ /**
38
+ * The function returns the size of a priority queue.
39
+ * @returns The size of the priority queue.
40
+ */
41
+ get size(): number;
42
+ /**
43
+ * The function checks if a priority queue is empty.
44
+ * @returns {boolean} A boolean value indicating whether the size of the priority queue is less than 1.
45
+ */
46
+ isEmpty(): boolean;
47
+ /**
48
+ * The `peek` function returns the top item in the priority queue without removing it.
49
+ * @returns The `peek()` method is returning either a `HeapItem<T>` object or `null`.Returns an val with the highest priority in the queue
50
+ */
51
+ peek(): HeapItem<T> | null;
52
+ /**
53
+ * The `peekLast` function returns the last item in the heap.
54
+ * @returns The method `peekLast()` returns either a `HeapItem<T>` object or `null`.Returns an val with the lowest priority in the queue
55
+ */
56
+ peekLast(): HeapItem<T> | null;
57
+ /**
58
+ * The `add` function adds an val to a priority queue with an optional priority value.
59
+ * @param {T} val - The `val` parameter represents the value that you want to add to the heap. It can be of any
60
+ * type.
61
+ * @param {number} [priority] - The `priority` parameter is an optional number that represents the priority of the
62
+ * val being added to the heap. If the `val` parameter is a number, then the `priority` parameter is set to
63
+ * the value of `val`. If the `val` parameter is not a number, then the
64
+ * @returns The `add` method returns the instance of the `Heap` class.
65
+ * @throws {Error} if priority is not a valid number
66
+ */
67
+ add(val: T, priority?: number): Heap<T>;
68
+ /**
69
+ * 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
70
+ * @returns either a HeapItem<T> object or null.
71
+ */
72
+ poll(): HeapItem<T> | null;
73
+ /**
74
+ * The function checks if a given node or value exists in the priority queue.
75
+ * @param {T | HeapItem<T>} node - The parameter `node` can be of type `T` or `HeapItem<T>`.
76
+ * @returns a boolean value.
77
+ */
78
+ has(node: T | HeapItem<T>): boolean;
79
+ /**
80
+ * The `toArray` function returns an array of `HeapItem<T>` objects.
81
+ * @returns An array of HeapItem<T> objects.Returns a sorted list of vals
82
+ */
83
+ toArray(): HeapItem<T>[];
84
+ /**
85
+ * The clear function clears the priority queue.
86
+ */
87
+ clear(): void;
88
+ }
package/dist/heap.js ADDED
@@ -0,0 +1,176 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Heap = exports.HeapItem = void 0;
4
+ var HeapItem = /** @class */ (function () {
5
+ /**
6
+ * The constructor function initializes an instance of a class with a priority and a value.
7
+ * @param {number} priority - The `priority` parameter is a number that represents the priority of the value. It is
8
+ * optional and has a default value of `NaN`.
9
+ * @param {T | null} [val=null] - The `val` parameter is of type `T | null`, which means it can accept a value of type
10
+ * `T` or `null`.
11
+ */
12
+ function HeapItem(priority, val) {
13
+ if (priority === void 0) { priority = NaN; }
14
+ if (val === void 0) { val = null; }
15
+ this._val = val;
16
+ this._priority = priority;
17
+ }
18
+ Object.defineProperty(HeapItem.prototype, "priority", {
19
+ get: function () {
20
+ return this._priority;
21
+ },
22
+ set: function (value) {
23
+ this._priority = value;
24
+ },
25
+ enumerable: false,
26
+ configurable: true
27
+ });
28
+ Object.defineProperty(HeapItem.prototype, "val", {
29
+ get: function () {
30
+ return this._val;
31
+ },
32
+ set: function (value) {
33
+ this._val = value;
34
+ },
35
+ enumerable: false,
36
+ configurable: true
37
+ });
38
+ return HeapItem;
39
+ }());
40
+ exports.HeapItem = HeapItem;
41
+ var Heap = /** @class */ (function () {
42
+ /**
43
+ * The function is a constructor for a class that initializes a priority callback function based on the
44
+ * options provided.
45
+ * @param [options] - An optional object that contains configuration options for the Heap.
46
+ */
47
+ function Heap(options) {
48
+ if (options) {
49
+ var priorityExtractor = options.priorityExtractor;
50
+ if (priorityExtractor !== undefined && typeof priorityExtractor !== 'function') {
51
+ throw new Error('.constructor expects a valid priority function');
52
+ }
53
+ this._priorityExtractor = priorityExtractor || (function (el) { return +el; });
54
+ }
55
+ else {
56
+ this._priorityExtractor = function (el) { return +el; };
57
+ }
58
+ }
59
+ Object.defineProperty(Heap.prototype, "pq", {
60
+ get: function () {
61
+ return this._pq;
62
+ },
63
+ enumerable: false,
64
+ configurable: true
65
+ });
66
+ Object.defineProperty(Heap.prototype, "priorityExtractor", {
67
+ get: function () {
68
+ return this._priorityExtractor;
69
+ },
70
+ enumerable: false,
71
+ configurable: true
72
+ });
73
+ Object.defineProperty(Heap.prototype, "size", {
74
+ /**
75
+ * The function returns the size of a priority queue.
76
+ * @returns The size of the priority queue.
77
+ */
78
+ get: function () {
79
+ return this._pq.size;
80
+ },
81
+ enumerable: false,
82
+ configurable: true
83
+ });
84
+ /**
85
+ * The function checks if a priority queue is empty.
86
+ * @returns {boolean} A boolean value indicating whether the size of the priority queue is less than 1.
87
+ */
88
+ Heap.prototype.isEmpty = function () {
89
+ return this._pq.size < 1;
90
+ };
91
+ /**
92
+ * The `peek` function returns the top item in the priority queue without removing it.
93
+ * @returns The `peek()` method is returning either a `HeapItem<T>` object or `null`.Returns an val with the highest priority in the queue
94
+ */
95
+ Heap.prototype.peek = function () {
96
+ return this._pq.peek();
97
+ };
98
+ /**
99
+ * The `peekLast` function returns the last item in the heap.
100
+ * @returns The method `peekLast()` returns either a `HeapItem<T>` object or `null`.Returns an val with the lowest priority in the queue
101
+ */
102
+ Heap.prototype.peekLast = function () {
103
+ return this._pq.leaf();
104
+ };
105
+ /**
106
+ * The `add` function adds an val to a priority queue with an optional priority value.
107
+ * @param {T} val - The `val` parameter represents the value that you want to add to the heap. It can be of any
108
+ * type.
109
+ * @param {number} [priority] - The `priority` parameter is an optional number that represents the priority of the
110
+ * val being added to the heap. If the `val` parameter is a number, then the `priority` parameter is set to
111
+ * the value of `val`. If the `val` parameter is not a number, then the
112
+ * @returns The `add` method returns the instance of the `Heap` class.
113
+ * @throws {Error} if priority is not a valid number
114
+ */
115
+ Heap.prototype.add = function (val, priority) {
116
+ if (typeof val === 'number') {
117
+ priority = val;
118
+ }
119
+ else {
120
+ if (priority === undefined) {
121
+ throw new Error('.add expects a numeric priority');
122
+ }
123
+ }
124
+ if (priority && Number.isNaN(+priority)) {
125
+ throw new Error('.add expects a numeric priority');
126
+ }
127
+ if (Number.isNaN(+priority) && Number.isNaN(this._priorityExtractor(val))) {
128
+ throw new Error('.add expects a numeric priority '
129
+ + 'or a constructor callback that returns a number');
130
+ }
131
+ var _priority = !Number.isNaN(+priority) ? priority : this._priorityExtractor(val);
132
+ this._pq.add(new HeapItem(_priority, val));
133
+ return this;
134
+ };
135
+ /**
136
+ * 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
137
+ * @returns either a HeapItem<T> object or null.
138
+ */
139
+ Heap.prototype.poll = function () {
140
+ var top = this._pq.poll();
141
+ if (!top) {
142
+ return null;
143
+ }
144
+ return top;
145
+ };
146
+ /**
147
+ * The function checks if a given node or value exists in the priority queue.
148
+ * @param {T | HeapItem<T>} node - The parameter `node` can be of type `T` or `HeapItem<T>`.
149
+ * @returns a boolean value.
150
+ */
151
+ Heap.prototype.has = function (node) {
152
+ if (node instanceof HeapItem) {
153
+ return this.pq.getNodes().includes(node);
154
+ }
155
+ else {
156
+ return this.pq.getNodes().findIndex(function (item) {
157
+ return item.val === node;
158
+ }) !== -1;
159
+ }
160
+ };
161
+ /**
162
+ * The `toArray` function returns an array of `HeapItem<T>` objects.
163
+ * @returns An array of HeapItem<T> objects.Returns a sorted list of vals
164
+ */
165
+ Heap.prototype.toArray = function () {
166
+ return this._pq.toArray();
167
+ };
168
+ /**
169
+ * The clear function clears the priority queue.
170
+ */
171
+ Heap.prototype.clear = function () {
172
+ this._pq.clear();
173
+ };
174
+ return Heap;
175
+ }());
176
+ exports.Heap = Heap;
@@ -0,0 +1,3 @@
1
+ export * from './heap';
2
+ export * from './max-heap';
3
+ export * from './min-heap';
package/dist/index.js ADDED
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./heap"), exports);
18
+ __exportStar(require("./max-heap"), exports);
19
+ __exportStar(require("./min-heap"), exports);
@@ -0,0 +1,23 @@
1
+ /**
2
+ * data-structure-typed
3
+ *
4
+ * @author Tyler Zeng
5
+ * @copyright Copyright (c) 2022 Tyler Zeng <zrwusa@gmail.com>
6
+ * @license MIT License
7
+ */
8
+ import { Heap, HeapItem } from 'data-structure-typed';
9
+ import { PriorityQueue } from 'data-structure-typed';
10
+ import type { HeapOptions } from 'data-structure-typed';
11
+ /**
12
+ * @class MaxHeap
13
+ * @extends Heap
14
+ */
15
+ export declare class MaxHeap<T = number> extends Heap<T> {
16
+ protected _pq: PriorityQueue<HeapItem<T>>;
17
+ /**
18
+ * The constructor initializes a PriorityQueue with a custom comparator function.
19
+ * @param [options] - The `options` parameter is an optional object that can be passed to the constructor. It is of
20
+ * type `HeapOptions<T>`, which is a generic type that represents the options for the heap.
21
+ */
22
+ constructor(options?: HeapOptions<T>);
23
+ }
@@ -0,0 +1,48 @@
1
+ "use strict";
2
+ /**
3
+ * data-structure-typed
4
+ *
5
+ * @author Tyler Zeng
6
+ * @copyright Copyright (c) 2022 Tyler Zeng <zrwusa@gmail.com>
7
+ * @license MIT License
8
+ */
9
+ var __extends = (this && this.__extends) || (function () {
10
+ var extendStatics = function (d, b) {
11
+ extendStatics = Object.setPrototypeOf ||
12
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
13
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
14
+ return extendStatics(d, b);
15
+ };
16
+ return function (d, b) {
17
+ if (typeof b !== "function" && b !== null)
18
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
19
+ extendStatics(d, b);
20
+ function __() { this.constructor = d; }
21
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
22
+ };
23
+ })();
24
+ Object.defineProperty(exports, "__esModule", { value: true });
25
+ exports.MaxHeap = void 0;
26
+ var data_structure_typed_1 = require("data-structure-typed");
27
+ var data_structure_typed_2 = require("data-structure-typed");
28
+ /**
29
+ * @class MaxHeap
30
+ * @extends Heap
31
+ */
32
+ var MaxHeap = /** @class */ (function (_super) {
33
+ __extends(MaxHeap, _super);
34
+ /**
35
+ * The constructor initializes a PriorityQueue with a custom comparator function.
36
+ * @param [options] - The `options` parameter is an optional object that can be passed to the constructor. It is of
37
+ * type `HeapOptions<T>`, which is a generic type that represents the options for the heap.
38
+ */
39
+ function MaxHeap(options) {
40
+ var _this = _super.call(this, options) || this;
41
+ _this._pq = new data_structure_typed_2.PriorityQueue({
42
+ comparator: function (a, b) { return b.priority - a.priority; }
43
+ });
44
+ return _this;
45
+ }
46
+ return MaxHeap;
47
+ }(data_structure_typed_1.Heap));
48
+ exports.MaxHeap = MaxHeap;
@@ -0,0 +1,24 @@
1
+ /**
2
+ * data-structure-typed
3
+ *
4
+ * @author Tyler Zeng
5
+ * @copyright Copyright (c) 2022 Tyler Zeng <zrwusa@gmail.com>
6
+ * @license MIT License
7
+ */
8
+ import { Heap, HeapItem } from 'data-structure-typed';
9
+ import { PriorityQueue } from 'data-structure-typed';
10
+ import type { HeapOptions } from 'data-structure-typed';
11
+ /**
12
+ * @class MinHeap
13
+ * @extends Heap
14
+ */
15
+ export declare class MinHeap<T = number> extends Heap<T> {
16
+ protected _pq: PriorityQueue<HeapItem<T>>;
17
+ /**
18
+ * The constructor initializes a PriorityQueue with a comparator function that compares the priority of two HeapItem
19
+ * objects.
20
+ * @param [options] - The `options` parameter is an optional object that can be passed to the constructor. It is of
21
+ * type `HeapOptions<T>`, which is a generic type that represents the options for the heap.
22
+ */
23
+ constructor(options?: HeapOptions<T>);
24
+ }
@@ -0,0 +1,49 @@
1
+ "use strict";
2
+ /**
3
+ * data-structure-typed
4
+ *
5
+ * @author Tyler Zeng
6
+ * @copyright Copyright (c) 2022 Tyler Zeng <zrwusa@gmail.com>
7
+ * @license MIT License
8
+ */
9
+ var __extends = (this && this.__extends) || (function () {
10
+ var extendStatics = function (d, b) {
11
+ extendStatics = Object.setPrototypeOf ||
12
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
13
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
14
+ return extendStatics(d, b);
15
+ };
16
+ return function (d, b) {
17
+ if (typeof b !== "function" && b !== null)
18
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
19
+ extendStatics(d, b);
20
+ function __() { this.constructor = d; }
21
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
22
+ };
23
+ })();
24
+ Object.defineProperty(exports, "__esModule", { value: true });
25
+ exports.MinHeap = void 0;
26
+ var data_structure_typed_1 = require("data-structure-typed");
27
+ var data_structure_typed_2 = require("data-structure-typed");
28
+ /**
29
+ * @class MinHeap
30
+ * @extends Heap
31
+ */
32
+ var MinHeap = /** @class */ (function (_super) {
33
+ __extends(MinHeap, _super);
34
+ /**
35
+ * The constructor initializes a PriorityQueue with a comparator function that compares the priority of two HeapItem
36
+ * objects.
37
+ * @param [options] - The `options` parameter is an optional object that can be passed to the constructor. It is of
38
+ * type `HeapOptions<T>`, which is a generic type that represents the options for the heap.
39
+ */
40
+ function MinHeap(options) {
41
+ var _this = _super.call(this, options) || this;
42
+ _this._pq = new data_structure_typed_2.PriorityQueue({
43
+ comparator: function (a, b) { return a.priority - b.priority; }
44
+ });
45
+ return _this;
46
+ }
47
+ return MinHeap;
48
+ }(data_structure_typed_1.Heap));
49
+ exports.MinHeap = MinHeap;
package/jest.config.js ADDED
@@ -0,0 +1,5 @@
1
+ module.exports = {
2
+ preset: 'ts-jest',
3
+ testEnvironment: 'node',
4
+ testMatch: ['<rootDir>/tests/**/*.test.ts'],
5
+ };
package/package.json ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "heap-typed",
3
+ "version": "1.19.3",
4
+ "description": "Heap. Javascript & Typescript Data Structure.",
5
+ "main": "dist/index.js",
6
+ "scripts": {
7
+ "build": "rm -rf dist && npx tsc",
8
+ "test": "jest",
9
+ "build:docs": "typedoc --out docs ./src",
10
+ "deps:check": "dependency-cruiser src",
11
+ "build:publish": "npm run build && npm run build:docs && npm publish"
12
+ },
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/zrwusa/data-structure-typed"
16
+ },
17
+ "keywords": [
18
+ "Binary heap",
19
+ "Heap data structure",
20
+ "Priority queue",
21
+ "Min-heap",
22
+ "Max-heap",
23
+ "Complete binary tree",
24
+ "Heap property",
25
+ "Insertion",
26
+ "Deletion",
27
+ "Heapify",
28
+ "Heap sort",
29
+ "Heap operations",
30
+ "Parent",
31
+ "Child",
32
+ "Root",
33
+ "Heapify up",
34
+ "Heapify down",
35
+ "Extract minimum/maximum",
36
+ "Decrease key",
37
+ "Increase key",
38
+ "Heap operations complexity",
39
+ "Binary tree",
40
+ "Data structure",
41
+ "Efficient priority management"
42
+ ],
43
+ "author": "Tyler Zeng zrwusa@gmail.com",
44
+ "license": "MIT",
45
+ "bugs": {
46
+ "url": "https://github.com/zrwusa/data-structure-typed/issues"
47
+ },
48
+ "homepage": "https://github.com/zrwusa/data-structure-typed#readme",
49
+ "types": "dist/index.d.ts",
50
+ "devDependencies": {
51
+ "@types/jest": "^29.5.3",
52
+ "@types/node": "^20.4.9",
53
+ "dependency-cruiser": "^13.1.2",
54
+ "jest": "^29.6.2",
55
+ "ts-jest": "^29.1.1",
56
+ "typedoc": "^0.24.8",
57
+ "typescript": "^4.9.5"
58
+ },
59
+ "dependencies": {
60
+ "data-structure-typed": "^1.19.3",
61
+ "zod": "^3.22.2"
62
+ }
63
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "compilerOptions": {
3
+ "declaration": true,
4
+ "outDir": "./dist",
5
+ "module": "commonjs",
6
+ "target": "es5",
7
+ "lib": [
8
+ "esnext",
9
+ ],
10
+ "strict": true,
11
+ "esModuleInterop": true,
12
+ "moduleResolution": "node",
13
+ "declarationDir": "./dist",
14
+ "skipLibCheck": true,
15
+ "downlevelIteration": true,
16
+ "experimentalDecorators": true,
17
+ // "allowJs": true,
18
+ // "allowSyntheticDefaultImports": true,
19
+ // "forceConsistentCasingInFileNames": true,
20
+ // "noFallthroughCasesInSwitch": true,
21
+ // "resolveJsonModule": true,
22
+ // "isolatedModules": true,
23
+ // "noEmit": true,
24
+ "typeRoots": [
25
+ "node_modules/@types"
26
+ ]
27
+ },
28
+
29
+ "include": [
30
+ "src",
31
+ ],
32
+ "exclude": [
33
+ // "node_modules/data-structure-typed",
34
+ "node_modules",
35
+ "dist"
36
+ ]
37
+ }