A list is ordered from smaller to largest when a sort is
called. Which sort would take the longest time to execute?
Answers were Sorted based on User's Feedback
Answer / uma sankar pradhan
selection sort,quick sort,bubble sort
(all will take the same time and its time complexity is of
the order of n^2)
the time complexity for insertion sort when the list is
ordered from smaller to larger is O(n)
the time complexity for merge sort irrespective of the
order of the elements is O(nlogn)
Is This Answer Correct ? | 17 Yes | 2 No |
Answer / zeeshan
quick sort is the answer.....quick sort shows worst case
behaviour when the list is already sorted....
courtesy"" shaum series- data structures""
Is This Answer Correct ? | 15 Yes | 0 No |
Answer / udkl
Its Quick Sort !!!!!
Even I got Surpriced!!!
http://www.geocities.com/siliconvalley/network/1854/Sort1.
html
Is This Answer Correct ? | 13 Yes | 4 No |
Quick sort's worst case is the one given in the question.
It exhibits selection sort type of procedure when the list
is sorted
Hence both :)
Is This Answer Correct ? | 8 Yes | 0 No |
Answer / rahul
Bubble Sort cannot be the answer, Because the MODIFIED BUBBLE SORT takes complexity of O(n) when the elements are arranged in a particular order..
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / rahul
When the elements are ordered in either Ascending or Descending order, Quick sort behaves Equivalent to Merge sort. Time complexity of O(nlogn) is taken for sorting.
Is This Answer Correct ? | 1 Yes | 2 No |
Answer / ntrphanikumar
I am not sure about the answer.
But I think the answer is "Selection Sort" whose order is
O(n^2) irrespective of the elements order.
I guess all other sorts somehow depend on the order of elements.
Is This Answer Correct ? | 3 Yes | 6 No |
Parenthesis is never required in postfix or prefix expressions, why?
What is the default size of arraylist?
Tell me do array subscripts always start with zero?
Give a basic algorithm for searching a binary search tree?
Can arraylist shrink?
What do you mean by shortest path?
When will we get ArrayStoreException?
Define an abstract data type (adt)?
Stack can be described as a pointer. Explain.
What is a tech stack?
Is array a data structure?
What is a bubble sort and how do you perform it?