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 cb094ab commit 0e0ea19Copy full SHA for 0e0ea19
src/Advanced.Algorithms/DataStructures/Tree/B+Tree.cs
@@ -14,7 +14,7 @@ public class BpTree<T> : IEnumerable<T> where T : IComparable
14
internal BpTreeNode<T> Root;
15
16
/// <summary>
17
- /// Keep a reference of Bottom Left Node
+ /// Keep a reference of Bottom Left/Right Node
18
/// for fast ascending/descending enumeration using Next pointer.
19
/// See IEnumerable & IEnumerableDesc implementation at bottom.
20
/// </summary>
0 commit comments