When two sorted arrays and are merged into one big sorted array . What is (the remainder of the element with index 400 in when divided by 12)?
Details and assumptions
is the th Fibonacci number.
is the factorial of ..
The MergeSort(array)
method itself is surprisingly simple. The meat of the algorithm is within the auxiliary method Merge
. The implementation of mergesort is correct(assuming the Merge
method is also correct). It should properly sort any given array
of integers. The conditional(Line 5) which handles the base case of the recursion however is noticeably missing. Which of the following code segments correctly fills the empty line?
1 2 3 4 5 6 7 8 |
|
Merge-sort is a sorting algorithm that works by splitting a given array into two sub arrays and , which are then sorted individually. Once the two arrays are sorted, they are combined to give the overall sorted array.
Merge-sort usually involves two methods: one for merging two sorted arrays and one for the sorting itself.
If we are given a merge function which takes in two sorted arrays and returns the sorted array of their combined elements, merge_sort(A)
can be roughly implemented as follows:
1 2 3 4 5 6 7 |
|
In classic merge-sort we are able to carry out the merging/dividing operation in linear time. For this problem however, assume we are unable to achieve such efficiency and instead the process of merging takes quadratic time().
What is the running time of this version of merge-sort?