Open In App
Related Articles

UGC-NET | UGC NET CS 2015 Jun – II | Question 48

Improve Article
Improve
Save Article
Save
Like Article
Like

Which of the following algorithms sort n integers, having the range 0 to (n2 – 1), in ascending order in O(n) time ?
(A) Selection sort
(B) Bubble sort
(C) Radix sort
(D) Insertion sort


Answer: (C)

Explanation:

  • Selection sort takes O(n2) time.
  • Bubble sort takes O(n2) time.
  • Radix sort takes O(n) time.
  • Insertion sort takes O(n2) time.

So, option (C) is correct.

Quiz of this Question

Last Updated : 11 May, 2018
Like Article
Save Article
Similar Reads