利用明智红黑树高效管理数据区间的方法
数据结构与算法
2021-10-18 v3 计算复杂性
摘要
本文描述了在有序集合内管理元素区间操作的最高效方法。目标是在不牺牲空间复杂度的前提下,优化平均情况时间复杂度并消除最坏情况下沉重的乘法常数,从而改进现有方案。这是实际应用中的高影响操作,通过引入一种称为明智红黑树(Wise Red-Black Tree)的新数据结构——红黑树的增强版本——来实现。
引用
@article{arxiv.2106.06950,
title = {An efficient way to manage ranges of data with Wise Red-Black Trees},
author = {Alberto Boffi},
journal= {arXiv preprint arXiv:2106.06950},
year = {2021}
}
备注
Added references to order-statistic trees. Corrected some terms and form. Results unchanged