Skip to content

Commit 28913fa

Browse files
committed
cleanup
1 parent 9cfc710 commit 28913fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Advanced.Algorithms/DataStructures/Tree/RedBlackTree.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace Advanced.Algorithms.DataStructures
1010
/// </summary>
1111
public class RedBlackTree<T> : IEnumerable<T> where T : IComparable
1212
{
13-
//only used internally by Bentley-Ottmann sweepline algorithm for faster line swap operation.
13+
//if enabled, lookup will fasten deletion/insertion/exists operations.
1414
private readonly Dictionary<T, BSTNodeBase<T>> nodeLookUp;
1515

1616
internal RedBlackTreeNode<T> Root { get; set; }

0 commit comments

Comments
 (0)