2 15 1 18
3/4
17 19
5
6
7
8
16
9
10
14
11
12
13

Crossword: Merge Sort

Across

1. A sorting algorithm that does not require extra space for temporary arrays or data structures.

2. A method for solving a problem by dividing it into progressively smaller subproblems.

3. The process of combining two or more sorted sub-arrays into a single sorted array.

4. Algorithm that divides an array into sub-lists, sorts the sub-lists, and then merges them back together in sorted order.

5. A sorting algorithm that preserves the relative order of equal elements in the sorted output.

6. A problem-solving strategy that involves breaking a problem into sub-problems, solving each sub-problem independently, and then combining the solutions to solve the original problem.

7. The scenario in which an algorithm takes the most amount of time to solve a given problem.

8. The scenario in which an algorithm takes the least amount of time to solve a given problem.

9. A function or algorithm that calls itself with a smaller version of the problem until a base case is reached.

10. A sort algorithm that looks at the elements of the array to be sorted to determine their relative order.

11. A variant of merge sort that does not require extra space for temporary arrays or data structures.

12. The amount of memory an algorithm requires to solve a problem as a function of the size of the input.

13. The amount of time an algorithm takes to solve a problem as a function of the size of the input.

Down

14. A sort algorithm that arranges the elements of an array without needing any extra memory for sorting.

15. The number of times two elements are compared during the sorting process.

16. A sorting algorithm that necessitates extra memory in order to arrange the array.

17. A mathematical notation used to describe the upper bound of the time complexity of an algorithm as the input size approaches infinity.

18. The scenario in which an algorithm takes an average amount of time to solve a given problem.

19. The central component of the merge sort algorithm is the function that combines two sorted subarrays. Its primary goal is to merge these arrays.


🖶

Shortcuts

Left: ⇤ Right: ⇥ Up: ↑ Down: ↓