mirror of
https://github.com/zrwusa/data-structure-typed.git
synced 2024-11-23 12:54:04 +00:00
exports bug fixed
This commit is contained in:
parent
bedf9de49f
commit
d0885cd561
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "data-structure-typed",
|
||||
"version": "0.8.16",
|
||||
"version": "0.8.18",
|
||||
"description": "Hash (CoordinateSet, CoordinateMap) Heap (MaxHeap, MinHeap) Binary Tree (AVL Tree, Binary Indexed Tree, Binary Search Tree, Segment Tree, Tree Multiset) Graph (Directed Graph, Undirected Graph) Linked List (Singly Linked List, Doubly Linked List) Matrix Priority Queue (Max Priority Queue, Min Priority Queue) Queue (Queue, Dequeue) Stack Trie",
|
||||
"main": "dist/index.js",
|
||||
"scripts": {
|
||||
|
|
|
@ -2,3 +2,10 @@ export * from './binary-tree';
|
|||
export * from './bst';
|
||||
export * from './binary-indexed-tree';
|
||||
export * from './segment-tree';
|
||||
export * from './avl-tree';
|
||||
export * from './b-tree';
|
||||
export * from './rb-tree';
|
||||
export * from './splay-tree';
|
||||
export * from './aa-tree';
|
||||
export * from './tree-multiset';
|
||||
export * from './two-three-tree';
|
||||
|
|
|
@ -7,4 +7,5 @@ export * from './binary-tree';
|
|||
export * from './heap';
|
||||
export * from './priority-queue';
|
||||
export * from './matrix';
|
||||
export * from './trie';
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
export * from './matrix';
|
||||
export * from './vector2d';
|
||||
export * from './matrix2d';
|
||||
export * from './navigator';
|
||||
|
|
|
@ -1 +1,2 @@
|
|||
export * from './queue';
|
||||
export * from './deque';
|
||||
|
|
Loading…
Reference in a new issue