We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dd0cb5 commit 4eba83fCopy full SHA for 4eba83f
B-Tree/README.md
@@ -7,7 +7,7 @@ A B-Tree is a self-balancing search tree, in which nodes can have more than two
7
A B-Tree of order *n* satisfies the following properties:
8
- Every node has at most *2n* keys.
9
- Every node (except root) has at least *n* keys.
10
- - Eyery non-leaf node with *k* keys has *k+1* children.
+ - Every non-leaf node with *k* keys has *k+1* children.
11
- The keys in all nodes are sorted in increasing order.
12
- The subtree between two keys *k* and *l* of a non-leaf node contains all the keys between *k* and *l*.
13
- All leaves appear at the same level.
0 commit comments