Skip to content

Commit 2bf4b5b

Browse files
authored
Merge pull request tsiege#8 from d-m-u/patch-1
Update README.md
2 parents 862110d + f2465b1 commit 2bf4b5b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,12 +138,12 @@ Big-Theta refers to the tight bound of time or space complexity of an algorithm.
138138

139139
#### What you need to know
140140
- Designed to optimize searching and sorting.
141-
- A **degenerate tree** is an unbalanced tree, which if entirely one-sided is a essentially a linked list.
141+
- A **degenerate tree** is an unbalanced tree, which if entirely one-sided, is essentially a linked list.
142142
- They are comparably simple to implement than other data structures.
143143
- Used to make **binary search trees**.
144144
- A binary tree that uses comparable keys to assign which direction a child is.
145-
- Left child has a key smaller than it's parent node.
146-
- Right child has a key greater than it's parent node.
145+
- Left child has a key smaller than its parent node.
146+
- Right child has a key greater than its parent node.
147147
- There can be no duplicate node.
148148
- Because of the above it is more likely to be used as a data structure than a binary tree.
149149

0 commit comments

Comments
 (0)