1.0.12 • Published 5 years ago

@hibiscus/data-structure v1.0.12

Weekly downloads
1
License
-
Repository
github
Last release
5 years ago

data-structure 提供树、链表、集合、字典等数据结构。

树:

BinaryTree: 二叉树顶层抽象类。 
NormalBinaryTree: 普通二叉树。
RedBlackTree:红黑树【自平衡树】。

用法

const array: Array<{
    bId: string, 
    name: string,
    title: string,
    ...
}>;

const nBinaryTree = new NormalBinaryTree(array, 'bId');
nBinaryTree.find('xxx');
nBinaryTree.remove('xxx')

const rbTree = new RedBlackTree(array, 'bId');
rbTree.find('xxx');
rbTree.remove('xxx')
1.0.12

5 years ago

1.0.11

5 years ago

1.0.10

5 years ago

1.0.9

5 years ago

1.0.8

5 years ago

1.0.4

5 years ago