A JavaScript Data Structure Library
A complete data structure library written in JavaScript.
- Arrays 数组 线性表(Linear List)
- Linked List 链表 线性表(Linear List)
- Dictionary 字典
- Multi Dictionary 多字典
- Binary Search Tree 二叉查找树 非线性表(NonLinear List)
- Stack 栈 线性表(Linear List)
- Queue 队列 线性表(Linear List)
- Set 集合
- Bag 背包
- Binary Heap 二叉堆 非线性表(NonLinear List)
- Priority Queue 优先队列 线性表(Linear List)