Skip to content

Commit 97c00d4

Browse files
committed
Merge branch 'rb_tree' of https://github.com/eulerkochy/DataStructures.jl into rb_tree
2 parents b14134f + d8a4bfc commit 97c00d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/red_black_tree.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# it has unique keys
22
# leftChild has keys which are less than the node
33
# rightChild has keys which are greater than the node
4-
# color is true if its a Red Node, else its false
4+
# color is true if it's a Red Node, else it's false
55
mutable struct RBTreeNode{K}
66
color::Bool
77
data::Union{K, Nothing}

0 commit comments

Comments
 (0)