Why is std::map implemented as a red-black tree?(为什么 std::map 实现为红黑树?)
问题描述
为什么 std::map
实现为 红黑树?
有几种平衡的二元搜索树 (BST).选择红黑树的设计权衡是什么?
There are several balanced binary search trees (BSTs) out there. What were design trade-offs in choosing a red-black tree?
推荐答案
可能两种最常见的自平衡树算法是 红黑树 和AVL 树.为了在插入/更新后平衡树,两种算法都使用旋转的概念,其中树的节点被旋转以执行重新平衡.
Probably the two most common self balancing tree algorithms are Red-Black trees and AVL trees. To balance the tree after an insertion/update both algorithms use the notion of rotations where the nodes of the tree are rotated to perform the re-balancing.
虽然在两种算法中插入/删除操作都是 O(log n),但在红黑树重新平衡旋转的情况下是一个 O(1) 操作,而使用 AVL 这是一个 O(log n) 操作,使得红黑树在重新平衡阶段这方面的效率更高,也是它更常用的可能原因之一.
While in both algorithms the insert/delete operations are O(log n), in the case of Red-Black tree re-balancing rotation is an O(1) operation while with AVL this is a O(log n) operation, making the Red-Black tree more efficient in this aspect of the re-balancing stage and one of the possible reasons that it is more commonly used.
红黑树用于大多数集合库,包括来自 Java 和 Microsoft .NET Framework 的产品.
Red-Black trees are used in most collection libraries, including the offerings from Java and Microsoft .NET Framework.
这篇关于为什么 std::map 实现为红黑树?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么 std::map 实现为红黑树?
基础教程推荐
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- 运算符重载的基本规则和习语是什么? 2022-10-31
- 设计字符串本地化的最佳方法 2022-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- C++,'if' 表达式中的变量声明 2021-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01