1/11 | 16 | 18 | |||||||||||||||||||||
2 | |||||||||||||||||||||||
3 | |||||||||||||||||||||||
17 | |||||||||||||||||||||||
4 | |||||||||||||||||||||||
14 | 5 | ||||||||||||||||||||||
15 | |||||||||||||||||||||||
13 | |||||||||||||||||||||||
6 | |||||||||||||||||||||||
7 | |||||||||||||||||||||||
8 | |||||||||||||||||||||||
9 | |||||||||||||||||||||||
12 | |||||||||||||||||||||||
10 | |||||||||||||||||||||||
1. It is a data structure that allows fast searching, insertion and deletion of elements, using the binary search algorithm on a sorted tree.
2. A problem-solving strategy that involves breaking a problem into smaller sub-problems, solving them independently and combining their solutions.
3. It is the act of checking if two values are equal, greater than or less than each other.
4. It is the point in the search interval that divides it into two equal halves.
5. It is a node in a binary search tree that has no children.
6. It is a traversing method for binary search trees where the root is visited first, followed by the left and right subtrees recursively.
7. It is an array where the elements are arranged in increasing order.
8. It is a traversing method for binary search trees where the left and right subtrees are first recursively traversed, followed by the root.
9. It is the amount of memory used by an algorithm to run as a function of the size of the input.
10. It is the range of elements in which the binary search algorithm looks for the target element.
11. Algorithm that searches a sorted list or array by repeatedly dividing in half until the desired item is found.
12. It is the length of the longest path from a node to a leaf in a binary search tree.
13. It is the repetition of a process in order to achieve a desired outcome, usually with the aim of approaching a goal in small steps.
14. It is a position in an array where an element is located.
15. It is the element being searched for in the binary search algorithm.
16. It is the amount of time taken by an algorithm to run as a function of the size of the input.
17. It is the process of visiting all the nodes in a binary search tree in a specific order, such as in-order, pre-order and post-order.
18. It is a traversing method for binary search trees where the left subtree is recursively traversed, followed by the root, and then the right subtree.