File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -138,12 +138,12 @@ Big-Theta refers to the tight bound of time or space complexity of an algorithm.
138
138
139
139
#### What you need to know
140
140
- 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.
142
142
- They are comparably simple to implement than other data structures.
143
143
- Used to make ** binary search trees** .
144
144
- 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.
147
147
- There can be no duplicate node.
148
148
- Because of the above it is more likely to be used as a data structure than a binary tree.
149
149
You can’t perform that action at this time.
0 commit comments