5.When does the worst case for heap sort happen? write in your answer script.

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
5.When does the worst case for heap sort happen? write in your answer script.
COUNT = 0
Sort(arr, left, right):
if left > right
return
mid = (left+right)/2
Sort(arr, left, mid)
Sort(arr, mid+1, right)
partition(arr, left, mid, right)
end
partition(arr, left, mid, right):
//creating temporary array based on mid index
A[]= arr[left:mid]
B[]= arr[mid:right]
n1 = length[A], n2 = length[B], n = n1 + n2
Create C[1 .. n]
Initialize two indices i,j to point to A and B
while i< n1 and j
do Select the smaller of Alil.Blil and add to end of C
< n2
Transcribed Image Text:COUNT = 0 Sort(arr, left, right): if left > right return mid = (left+right)/2 Sort(arr, left, mid) Sort(arr, mid+1, right) partition(arr, left, mid, right) end partition(arr, left, mid, right): //creating temporary array based on mid index A[]= arr[left:mid] B[]= arr[mid:right] n1 = length[A], n2 = length[B], n = n1 + n2 Create C[1 .. n] Initialize two indices i,j to point to A and B while i< n1 and j do Select the smaller of Alil.Blil and add to end of C < n2
do Select the smaller of A[i],B[j] and add to end of c
COUNT=COUNT+1
Advance the index that points to the smaller one
if ic n1 or j« n2
then Copy the rest of the non-traversed array to the end of C
return C
end
/* Driver program to test above functions */
arrInput[] = { 24,41,49,50,56,76 };
Sort(arrInput, e, sizeOfarrInput);
print("Total no. of comparisons ", COUNT);
Transcribed Image Text:do Select the smaller of A[i],B[j] and add to end of c COUNT=COUNT+1 Advance the index that points to the smaller one if ic n1 or j« n2 then Copy the rest of the non-traversed array to the end of C return C end /* Driver program to test above functions */ arrInput[] = { 24,41,49,50,56,76 }; Sort(arrInput, e, sizeOfarrInput); print("Total no. of comparisons ", COUNT);
Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY