Question

In: Computer Science

Complete the coding/testing of the heap sort method we began in class. Then modify your program...

Complete the coding/testing of the heap sort method we began in class. Then modify your program so that it outputs a comparison of the actual number of swaps it performs to the predicted number of swaps, and a comparison of the actual sort effort to the predicted and minimum sort effort. The output should be formatted exactly as shown below.
Actual swaps = xxxx; Predicted swaps = xxxx
Actual sort effort = xxxx; Predicted sort effort = xxxx; Min sort effort = xxxx
As discussed in class, the minimum sort effort is nlog2n. The predicted sort effort is 3nlog2n, and the predicted number of swaps is two thirds of the predicted sort effort (see pg 457/458).
To do this:
• modify the project class to include two static integer class level variables that will store
the actual number of comparisons and actual number of swaps required to perform a sort.
• modify the swap method to count the number of swaps by incrementing one of the class
level variables.
• modify the reheapDownward method to keep track to the sort effort by incrementing one
of the class level variables whenever a comparison is made.
• modify the main method to product the two lines of required output.

This is the class, I am using
import java.util.Arrays;
import java.util.Random;
import javax.swing.JOptionPane;


public class HeapSortTemplate
{
public static void main(String[] args)
{
//int[] data = {1, 40, 36, 17, 3, 25, 1, 2, 4};
  
int size = Integer.parseInt(JOptionPane.showInputDialog("How Many Items to"
+ " sort," + " n = ?"));
int[] data = new int[size];
  
randomValues(data);
System.out.println("Unsorted");
System.out.println(Arrays.toString(data));
System.out.println();
  
//reheapDown(data.length, data, 0);
heapSort(data);
  
//reheapDownward(data.length, data, 0);
System.out.println("Sorted");
System.out.println(Arrays.toString(data));
}
  
public static void heapSort(int[] data)
{ // Step 1:
// do nothing, just think 2n+_1, 2n+2 (then every arrray OK)
// Step 2: // use reheap down to do this
for(int ip = data.length/2 - 1; ip >=0; ip--)
{
reheapDown(data.length, data, ip);
}
// Step 3:
for(int i = 1; i <=data.length; i++)
{
// place root in its correct place in the array
swap(data, 0, data.length - i);
reheapDown(data.length - i, data, 0);
}
}  
public static void reheapDown(int size, int[] data, int root)
{
if(size <=1 || (root*2 + 1) >= size)
{
return; // one node or no children
}
if(root*2+1 == size-1) // one child
{
if(data[root] > data[root*2+1] )
{
return;
}
else
{
swap(data, root, root*2+1); //root and left child
return; //root is not a leaf;
}
// root has 2 children
}
// root has 2 children
if(data[root] > data[root*2+1] && data[root] > data[root*2+2])
{
return; // root larger than oth children
}
else
{
if(data[root*2+1] > data[root*2+2]) // left child larger
{
swap(data, root, root*2+1);
reheapDown(size, data, root*2+1); //<*** use size
}
else // right child larger
{
swap(data, root, root*2+2);
reheapDown(size, data, root*2+2); //<** use size
}
}
}
public static void randomValues(int[] data) // random numbers from 0 to 999, no duplicates
{ Random rn = new Random();
int r = -1;
boolean duplicate;
data[0] = rn.nextInt(data.length);
  
for(int index = 1; index < data.length; index++)
{ duplicate = true;
while(duplicate == true) // r is a duplicate value
{ r = rn.nextInt(data.length);
duplicate = false;
for(int j = 0; j < index; j++) // check all the set elements for a duplicate
{ if(data[j] == r) // a duplicate found
{ duplicate = true;
break;
}// end if  
}// end for
if(duplicate == false)
   data[index] = r;
}
}      
}      
public static void swap(int[] data, int i1, int i2)
{
int temp = data[i1];
data[i1] = data[i2];
data[i2] = temp;
}
}

Solutions

Expert Solution

The changes made in the code are in bold. All the code edited have comments for better understanding. Hope this helps!

Code:

import java.util.Arrays;
import java.util.Random;
import javax.swing.JOptionPane;

public class HeapSortTemplate
{

// two static integer class level variables to
// the actual number of comparisons and actual number of swaps
public static int actual_cmp = 0, actual_swap = 0;

  
public static void main(String[] args)
{
//int[] data = {1, 40, 36, 17, 3, 25, 1, 2, 4};
  
int size = Integer.parseInt(JOptionPane.showInputDialog("How Many Items to"
+ " sort," + " n = ?"));
int[] data = new int[size];
  
randomValues(data);
System.out.println("Unsorted");
System.out.println(Arrays.toString(data));
System.out.println();
  
//reheapDown(data.length, data, 0);
heapSort(data);
  
//reheapDownward(data.length, data, 0);
System.out.println("Sorted");
System.out.println(Arrays.toString(data));
  
// modify the main method to product the two lines of required output
int n = data.length;
// predicted sort effort is 3nlog2n
int predictedSortEffort = 3*n*(int)(Math.log(n)/Math.log(2));
// minimum sort effort is nlog2n
int minSortEffort = n*(int)(Math.log(n)/Math.log(2));
// predicted number of swaps is two thirds of the predicted sort effort
int predictedSwap = (2 * predictedSortEffort) / 3;
  
System.out.println("\nActual swaps = "+actual_swap
+"; Predicted swaps = " + predictedSwap);
System.out.println("Actual sort effort = "+actual_cmp
+"; Predicted sort effort = "+predictedSortEffort
+"; Min sort effort = "+minSortEffort);

}
  
public static void heapSort(int[] data)
{
// Step 1:
// do nothing, just think 2n+_1, 2n+2 (then every arrray OK)
// Step 2: // use reheap down to do this
for(int ip = data.length/2 - 1; ip >=0; ip--)
{
reheapDown(data.length, data, ip);
}
// Step 3:
for(int i = 1; i <=data.length; i++)
{
// place root in its correct place in the array
swap(data, 0, data.length - i);
reheapDown(data.length - i, data, 0);
}
}
  
public static void reheapDown(int size, int[] data, int root)
{
// modify the reheapDownward method to keep track to the sort effort
// by incrementing one of the class level variables whenever a comparison is made.

  
if(size <=1 || (root*2 + 1) >= size)
{
return; // one node or no children
}
if(root*2+1 == size-1) // one child
{
actual_cmp++; // comparison
if(data[root] > data[root*2+1] )
{
return;
}
else
{
swap(data, root, root*2+1); //root and left child
return; //root is not a leaf;
}
// root has 2 children
}
// root has 2 children
actual_cmp+= 2; // increase by 2 for 2 comparisons
if(data[root] > data[root*2+1] && data[root] > data[root*2+2])
{
return; // root larger than oth children
}
else
{
actual_cmp++; // comparison
if(data[root*2+1] > data[root*2+2]) // left child larger
{
swap(data, root, root*2+1);
reheapDown(size, data, root*2+1); //<*** use size
}
else // right child larger
{
swap(data, root, root*2+2);
reheapDown(size, data, root*2+2); //<** use size
}
}
}
  
public static void randomValues(int[] data) // random numbers from 0 to 999, no duplicates
{
Random rn = new Random();
int r = -1;
boolean duplicate;
data[0] = rn.nextInt(data.length);
  
for(int index = 1; index < data.length; index++)
{
duplicate = true;
while(duplicate == true) // r is a duplicate value
{
r = rn.nextInt(data.length);
duplicate = false;
for(int j = 0; j < index; j++) // check all the set elements for a duplicate
{
if(data[j] == r) // a duplicate found
{
duplicate = true;
break;
}// end if
}// end for
if(duplicate == false)
data[index] = r;
}
}
}
  
public static void swap(int[] data, int i1, int i2)
{
// modify the swap method to count the number of swaps
// by incrementing one of the class level variables.
actual_swap++;

  
int temp = data[i1];
data[i1] = data[i2];
data[i2] = temp;
}
}

Sample run:

Code screenshots:


Related Solutions

Implement heap sort by using the bottom-up insertion method. Add this sort to your sorting framework....
Implement heap sort by using the bottom-up insertion method. Add this sort to your sorting framework. Evaluate its performance in terms of the numbers of comparisons and exchanges, and compare it to the performance of the two advanced sorting methods that you have previously implemented. Submit your report with detailed empirical results and a thorough explanation of these results. Which of the three advanced sorting method is the best choice for a) ordered data, b) data in reverse order, and...
Use the Heap class provided to implement a sort routine in a Main class where the...
Use the Heap class provided to implement a sort routine in a Main class where the user enters a series of values, each value is then pushed onto a heap, then the values are printed out in ascending order. public class Heap { public static final int SIZE = 1025; public Heap() { elt = new Element[SIZE]; lastLoc = 0; } public void push(String k, Object o) { if (!fullCheck()) { lastLoc++; elt[lastLoc] = new Element(k,o); int loc = lastLoc;...
Modify the DetailedClockPane.java class in your detailed clock program, to add animation to this class. Be...
Modify the DetailedClockPane.java class in your detailed clock program, to add animation to this class. Be sure to include start() and stop() methods to start and stop the clock, respectively.Then write a program that lets the user control the clock with the start and stop buttons.
JAVA- Modify the LinkedList1 class presented in this chapter by adding sort() and reverse() methods. The...
JAVA- Modify the LinkedList1 class presented in this chapter by adding sort() and reverse() methods. The reverse method reverses the order of the elements in the list, and the sort method rearranges the elements in the list so they are sorted in alphabetical order. The class should use recursion to implement the sort and reverse operations. Extend the graphical interface in the LinkedList1Demo class to support sort and reverse commands, and use it to test the new methods. LinkedList1: class...
Complete java program below. Complete non-recursive version nthFibonacciWithLoop() method. Complete recursive version nthFibonacciWithRecursion() method. public class...
Complete java program below. Complete non-recursive version nthFibonacciWithLoop() method. Complete recursive version nthFibonacciWithRecursion() method. public class Fibonacci { // Fib(N): N N = 0 or N = 1 // Fib(N-1) + Fib(N-2) N > 1 // For example, // Fib(0) = 0 // Fib(1) = 1 // Fib(2) = Fib(1) + Fib(0) = 1 + 0 = 1 // Fib(3) = Fib(2) + Fib(1) = Fib(2) + 1 = (Fib(1) + Fib(0)) + 1 = 1 + 0 + 1...
Write an ARMv8 program to sort an array of elements. As Imentioned in class, this...
Write an ARMv8 program to sort an array of elements. As I mentioned in class, this problem uses a portion of your Programming Assignment 1 where you computed the smallest and largest values in an array. Here we will extend that assignment to find the “index” of the smallest and the index of the largest elements of the array. The following C code segment illustrates how we can sort the element of an array.For this problem, assume an array with...
Modify Example 5.1 to add a ReadAccount method to the BankAccount class that will return a...
Modify Example 5.1 to add a ReadAccount method to the BankAccount class that will return a BankAccountconstructed from data input from the keyboard. Override ReadAccount in SavingsAccount to return an account that refers to a SavingsAccount that you construct, again initializing it with data from the keyboard. Similarly, implement ReadAccount in the CheckingAccount class. Use the following code to test your work. public static void testCode()         {             SavingsAccount savings = new SavingsAccount(100.00, 3.5);             SavingsAccount s = (SavingsAccount)savings.ReadAccount();...
Modify your dice class to be a class template supporting other types for numRolled. Provide a test program demonstrating it working with different types.
  Complete the following... Modify your dice class to be a class template supporting other types for numRolled. Provide a test program demonstrating it working with different types. Bonus: Convert your variable size dice class to a template class and demonstrate overloads working. Submit: Commented source for dice template(s) and test zipped into a single file.   //diceType.h (header file) #ifndef H_diceType#define H_diceType class diceType{public:diceType();// Default constructor// Sets numSides to 6 with a random numRolled from 1 - 6 diceType(int);//...
Can someone fix solver class. it suppose to call method from sort class for insertion and...
Can someone fix solver class. it suppose to call method from sort class for insertion and heap sort. However its not giving the outuput.. Run following class Solver where 20 array instances of 1M random integers are sorted using Insertion- sort and Heap-sort, respectively public class Solver {    public static void main(String[] args) { final int SIZE = 1000000; // 1 million final int Instances=20; int[][] TwoDimArray = new int[Instances][SIZE];    Sort s = new Sort();    for(int i=0;...
Modify the GreenvilleRevenue program so that it uses the Contestant class and performs the following tasks:...
Modify the GreenvilleRevenue program so that it uses the Contestant class and performs the following tasks: The program prompts the user for the number of contestants in this year’s competition; the number must be between 0 and 30. The program continues to prompt the user until a valid value is entered. The expected revenue is calculated and displayed. The revenue is $25 per contestant. For example if there were 3 contestants, the expected revenue would be displayed as: Revenue expected...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT