Skip to content

Commit bd35ff8

Browse files
authored
Fix binary search tree link
Just need to convert spaces into %20 for relative URLs with spaces to work.
1 parent ef1c33b commit bd35ff8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Binary Tree/README.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The child nodes are usually called the *left* child and the *right* child. If a
88

99
Often nodes will have a link back to their parent but this is not strictly necessary.
1010

11-
Binary trees are often used as [binary search trees](../Binary Search Tree/). In that case, the nodes must be in a specific order (smaller values on the left, larger values on the right). But this is not a requirement for all binary trees.
11+
Binary trees are often used as [binary search trees](../Binary%20Search%20Tree/). In that case, the nodes must be in a specific order (smaller values on the left, larger values on the right). But this is not a requirement for all binary trees.
1212

1313
For example, here is a binary tree that represents a sequence of arithmetical operations, `(5 * (a - 10)) + (-4 * (3 / b))`:
1414

0 commit comments

Comments
 (0)