Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Algorithms | Sorting | Question 19

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Which of the following sorting algorithms has the lowest worst-case complexity?

(A)

Merge Sort

(B)

Bubble Sort

(C)

Quick Sort

(D)

Selection Sort


Answer: (A)

Explanation:

Worst-case complexities for the above sorting algorithms are as follows:

  • Merge Sort: O(n*log(n))
  • Bubble Sort: O(n2)
  • Quick Sort: O(n2)
  • Selection Sort: O(n2)


Quiz of this Question
Please comment below if you find anything wrong in the above post

My Personal Notes arrow_drop_up
Last Updated : 28 Jun, 2021
Like Article
Save Article
Similar Reads