Commit 77843c09 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent b9efd0b5
...@@ -3,13 +3,13 @@ ...@@ -3,13 +3,13 @@
// Package btree provides B⁺ Trees for ZODB. // Package btree provides B⁺ Trees for ZODB.
// //
// It is modelled and data compatible with BTree/py package: // It is modelled after and is data compatible with BTree/py package:
// //
// http://btrees.readthedocs.io // http://btrees.readthedocs.io
// https://github.com/zopefoundation/BTrees // https://github.com/zopefoundation/BTrees
// //
// A B⁺ tree consists of nodes. Only leaf tree nodes point to data. // A B⁺ tree consists of nodes. Only leaf tree nodes point to data.
// Intermediate tree nodes contains keys and pointer to next-level tree nodes. // Intermediate tree nodes contains keys and pointers to next-level tree nodes.
// //
// A well-balanced B⁺ tree always have uniform depth - that is the path to any // A well-balanced B⁺ tree always have uniform depth - that is the path to any
// leaf node from the tree root is the same. However historically ZODB/py does // leaf node from the tree root is the same. However historically ZODB/py does
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment