adplus-dvertising
frame-decoration

Question

Select the appropriate recursive call for QuickSort.(arr is the array, low is the starting index and high is the ending index of the array, partition returns the pivot element)
a)

public static void quickSort(int[] arr, int low, int high)
{
 int pivot;
 if(high>low)
 {
  pivot = partition(arr, low, high);
  quickSort(arr, low, pivot-1);
  quickSort(arr, pivot+1, high);
 }
}

b)

public static void quickSort(int[] arr, int low, int high)
{
 int pivot;
 if(high<low)
 {
  pivot = partition(arr, low, high);
  quickSort(arr, low, pivot-1);
  quickSort(arr, pivot+1, high);
 }
}

c)

public static void quickSort(int[] arr, int low, int high)
{
 int pivot;
 if(high>low)
 {
  pivot = partition(arr, low, high);
  quickSort(arr, low, pivot);
  quickSort(arr, pivot, high);
 }
}

d) None of the mentioned

a.

a

b.

b

c.

c

d.

d

Answer: (a).a

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Select the appropriate recursive call for QuickSort.(arr is the array, low is the starting index and high is the ending index of the array, partition returns the pivot element)

Similar Questions

Discover Related MCQs

Q. What is the worst case complexity of QuickSort?

Q. What is a randomized QuickSort?

Q. What is the best case complexity of QuickSort?

Q. The given array is arr = {2,3,4,1,6}. What are the pivots that are returned as a result of subsequent partitioning?

Q. What is the average case complexity of QuickSort?

Q. The given array is arr = {2,6,1}. What are the pivots that are returned as a result of subsequent partitioning?

Q. Which of the following is not true about QuickSort?

Q. What is the time complexity for a given pancake sort given it undergoes ā€œnā€ flip operations?

Q. Which operation is most essential to the process of pancake sort?

Q. How many flips does the simplest of pancake sorting techniques require?

Q. Pancake Sorting appears in which of the following?

Q. In addition to the pancake sorting problem, there is the case of the burnt pancake problem in which we are dealing with pancakes (discs) that are burnt on one side only. In this case it is taken that the burnt side must always end up _______

Q. In a computational complexity theory, a problem with decision making is said to be NP-complete when it is both in NP and NP-hard. What does NP mean?

Q. When we realize a specific implementation of a pancake algorithm, every move when we find the greatest of the sized array and flipping can be modeled through __________

Q. The Pancake Problems (1975, 1979, 1973) did NOT involve which of the following people?

Q. Topological sort can be applied to which of the following graphs?

Q. Most Efficient Time Complexity of Topological Sorting is? (V ā€“ number of vertices, E ā€“ number of edges)

Q. Topological sort starts from a node which has?

Q. What can be the applications of topological sorting?

Q. Topological sort of a Directed Acyclic graph is?