Answered step by step
Verified Expert Solution
Question
1 Approved Answer
New-Merge(rl], tmpL], 1b, mid, ub): // assume tmpLl stores sorted subarrays J mid+1 for mlb to ub if (i > mid) r [m] tmp [j++]
New-Merge(rl], tmpL], 1b, mid, ub): // assume tmpLl stores sorted subarrays J mid+1 for mlb to ub if (i > mid) r [m] tmp [j++] else if (j ub) r[m] tmp [i++] else if (tmp [j] tmp [1]) r[m] tmp[j++] else r[m] tmp[i++] The following routine is an attempt to use the New-Merge routine. (Here, sorted and merged are used to store the addresses of arrays r [] and tmp []. The addresses are exchanged in the outer while-loop after each iteration.) Iter-Mergesort (r C], n): // assume auxiliary space tmp[] sorted r; // r[] contains sorted 1-element subarrays merged mid) r [m] tmp [j++] else if (j ub) r[m] tmp [i++] else if (tmp [j] tmp [1]) r[m] tmp[j++] else r[m] tmp[i++] The following routine is an attempt to use the New-Merge routine. (Here, sorted and merged are used to store the addresses of arrays r [] and tmp []. The addresses are exchanged in the outer while-loop after each iteration.) Iter-Mergesort (r C], n): // assume auxiliary space tmp[] sorted r; // r[] contains sorted 1-element subarrays merged
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started