graph-typed 1.54.1 → 1.54.2
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/LICENSE +1 -1
- package/coverage/lcov-report/index.ts.html +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -16
- package/dist/types/data-structures/binary-tree/index.d.ts +1 -1
- package/dist/types/data-structures/binary-tree/index.js +1 -1
- package/dist/types/data-structures/binary-tree/tree-counter.d.ts +1 -1
- package/dist/types/data-structures/binary-tree/tree-multi-map.d.ts +1 -1
- package/package.json +3 -3
- package/src/index.ts +2 -16
- package/src/types/data-structures/binary-tree/index.ts +1 -1
- package/src/types/data-structures/binary-tree/tree-counter.ts +1 -1
- package/src/types/data-structures/binary-tree/tree-multi-map.ts +1 -1
- /package/dist/types/data-structures/binary-tree/{rb-tree.d.ts → red-black-tree.d.ts} +0 -0
- /package/dist/types/data-structures/binary-tree/{rb-tree.js → red-black-tree.js} +0 -0
- /package/src/types/data-structures/binary-tree/{rb-tree.ts → red-black-tree.ts} +0 -0
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2022
|
|
3
|
+
Copyright (c) 2022 Pablo Zeng <zrwusa@gmail.com>
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -111,8 +111,8 @@
|
|
|
111
111
|
<span class="cline-any cline-neutral"> </span></td><td class="text"><pre class="prettyprint lang-js">/**
|
|
112
112
|
* data-structure-typed
|
|
113
113
|
*
|
|
114
|
-
* @author
|
|
115
|
-
* @copyright Copyright (c) 2022
|
|
114
|
+
* @author Pablo Zeng
|
|
115
|
+
* @copyright Copyright (c) 2022 Pablo Zeng <zrwusa@gmail.com>
|
|
116
116
|
* @license MIT License
|
|
117
117
|
*/
|
|
118
118
|
export {
|
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* data-structure-typed
|
|
3
3
|
*
|
|
4
|
-
* @author
|
|
5
|
-
* @copyright Copyright (c) 2022
|
|
4
|
+
* @author Pablo Zeng
|
|
5
|
+
* @copyright Copyright (c) 2022 Pablo Zeng <zrwusa@gmail.com>
|
|
6
6
|
* @license MIT License
|
|
7
7
|
*/
|
|
8
8
|
export * from './data-structures/graph';
|
package/dist/index.js
CHANGED
|
@@ -17,24 +17,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
/**
|
|
18
18
|
* data-structure-typed
|
|
19
19
|
*
|
|
20
|
-
* @author
|
|
21
|
-
* @copyright Copyright (c) 2022
|
|
20
|
+
* @author Pablo Zeng
|
|
21
|
+
* @copyright Copyright (c) 2022 Pablo Zeng <zrwusa@gmail.com>
|
|
22
22
|
* @license MIT License
|
|
23
23
|
*/
|
|
24
|
-
// export {
|
|
25
|
-
// AbstractVertex,
|
|
26
|
-
// AbstractEdge,
|
|
27
|
-
// AbstractGraph,
|
|
28
|
-
// DirectedVertex,
|
|
29
|
-
// DirectedEdge,
|
|
30
|
-
// DirectedGraph,
|
|
31
|
-
// UndirectedVertex,
|
|
32
|
-
// UndirectedEdge,
|
|
33
|
-
// UndirectedGraph,
|
|
34
|
-
// MapGraph,
|
|
35
|
-
// MapVertex,
|
|
36
|
-
// MapEdge
|
|
37
|
-
// } from 'data-structure-typed';
|
|
38
24
|
__exportStar(require("./data-structures/graph"), exports);
|
|
39
25
|
__exportStar(require("./types/data-structures/graph"), exports);
|
|
40
26
|
__exportStar(require("./types/common"), exports);
|
|
@@ -3,7 +3,7 @@ export * from './bst';
|
|
|
3
3
|
export * from './avl-tree';
|
|
4
4
|
export * from './segment-tree';
|
|
5
5
|
export * from './avl-tree-multi-map';
|
|
6
|
-
export * from './
|
|
6
|
+
export * from './red-black-tree';
|
|
7
7
|
export * from './tree-multi-map';
|
|
8
8
|
export * from './tree-counter';
|
|
9
9
|
export * from './avl-tree-counter';
|
|
@@ -19,7 +19,7 @@ __exportStar(require("./bst"), exports);
|
|
|
19
19
|
__exportStar(require("./avl-tree"), exports);
|
|
20
20
|
__exportStar(require("./segment-tree"), exports);
|
|
21
21
|
__exportStar(require("./avl-tree-multi-map"), exports);
|
|
22
|
-
__exportStar(require("./
|
|
22
|
+
__exportStar(require("./red-black-tree"), exports);
|
|
23
23
|
__exportStar(require("./tree-multi-map"), exports);
|
|
24
24
|
__exportStar(require("./tree-counter"), exports);
|
|
25
25
|
__exportStar(require("./avl-tree-counter"), exports);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type { RedBlackTreeOptions } from './
|
|
1
|
+
import type { RedBlackTreeOptions } from './red-black-tree';
|
|
2
2
|
export type TreeCounterOptions<K, V, R> = RedBlackTreeOptions<K, V, R> & {};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type { RedBlackTreeOptions } from './
|
|
1
|
+
import type { RedBlackTreeOptions } from './red-black-tree';
|
|
2
2
|
export type TreeMultiMapOptions<K, V, R> = Omit<RedBlackTreeOptions<K, V, R>, 'isMapMode'> & {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graph-typed",
|
|
3
|
-
"version": "1.54.
|
|
3
|
+
"version": "1.54.2",
|
|
4
4
|
"description": "Graph. Javascript & Typescript Data Structure.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -112,7 +112,7 @@
|
|
|
112
112
|
"documentation",
|
|
113
113
|
"visualization"
|
|
114
114
|
],
|
|
115
|
-
"author": "
|
|
115
|
+
"author": "Pablo Zeng zrwusa@gmail.com",
|
|
116
116
|
"license": "MIT",
|
|
117
117
|
"bugs": {
|
|
118
118
|
"url": "https://github.com/zrwusa/data-structure-typed/issues"
|
|
@@ -136,6 +136,6 @@
|
|
|
136
136
|
"typescript": "^4.9.5"
|
|
137
137
|
},
|
|
138
138
|
"dependencies": {
|
|
139
|
-
"data-structure-typed": "^1.54.
|
|
139
|
+
"data-structure-typed": "^1.54.2"
|
|
140
140
|
}
|
|
141
141
|
}
|
package/src/index.ts
CHANGED
|
@@ -1,24 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* data-structure-typed
|
|
3
3
|
*
|
|
4
|
-
* @author
|
|
5
|
-
* @copyright Copyright (c) 2022
|
|
4
|
+
* @author Pablo Zeng
|
|
5
|
+
* @copyright Copyright (c) 2022 Pablo Zeng <zrwusa@gmail.com>
|
|
6
6
|
* @license MIT License
|
|
7
7
|
*/
|
|
8
|
-
// export {
|
|
9
|
-
// AbstractVertex,
|
|
10
|
-
// AbstractEdge,
|
|
11
|
-
// AbstractGraph,
|
|
12
|
-
// DirectedVertex,
|
|
13
|
-
// DirectedEdge,
|
|
14
|
-
// DirectedGraph,
|
|
15
|
-
// UndirectedVertex,
|
|
16
|
-
// UndirectedEdge,
|
|
17
|
-
// UndirectedGraph,
|
|
18
|
-
// MapGraph,
|
|
19
|
-
// MapVertex,
|
|
20
|
-
// MapEdge
|
|
21
|
-
// } from 'data-structure-typed';
|
|
22
8
|
export * from './data-structures/graph';
|
|
23
9
|
export * from './types/data-structures/graph';
|
|
24
10
|
export * from './types/common';
|
|
@@ -3,7 +3,7 @@ export * from './bst';
|
|
|
3
3
|
export * from './avl-tree';
|
|
4
4
|
export * from './segment-tree';
|
|
5
5
|
export * from './avl-tree-multi-map';
|
|
6
|
-
export * from './
|
|
6
|
+
export * from './red-black-tree';
|
|
7
7
|
export * from './tree-multi-map';
|
|
8
8
|
export * from './tree-counter';
|
|
9
9
|
export * from './avl-tree-counter';
|
|
File without changes
|
|
File without changes
|
|
File without changes
|