摘要:
C++ 中的内存区 Const Data: The const data area stores string literals and other data whose values are known at compile time. No objects of class type can e 阅读全文
摘要:
红黑树 红黑树可以看做是对二叉搜索树的改进,红黑树的红黑性质限制了红黑树的树高 left)` 1. z 的叔节点为红色。 叔节点着黑,父节点着黑,祖父节点着红, z 指向 祖父节点。 2. z 的叔节点为黑色,且 z 为右孩子。z 指向父节点 然后左旋: 3. z 的叔节点为黑色,且 z 为左孩子。 阅读全文