UNPKG

arayts

Version:

让 TypeScript 开发如丝般顺滑。ArayTS 提供了一套高效、优雅的算法工具集,包含常用的数据结构与算法实现,帮助开发者轻松构建可靠的应用程序。

11 lines 225 B
/** * 红黑树 */ export declare class RedBlackTree<T> { private root; private rotateLeft; private rotateRight; insert(value: T): void; private fixInsertion; } //# sourceMappingURL=redblacktree.d.ts.map