Data Structure Time Complexity Question #15270
Single Choice Easy

QWhat is the time complexity of a bubble sort algorithm for sorting an array of n elements in the worst case?

ID: #15270 Time Complexity 179 views
Question Info
#15270Q ID
EasyDifficulty
Time ComplexityTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A O(1)
  • B O(log n)
  • C O(n)
  • D O(n^2)
Correct Answer

Explanation

Bubble sort is a simple comparison-based sorting algorithm that repeatedly swaps adjacent elements if they are in the wrong order. In the worst case, where the array is reverse sorted, each pass of the algorithm requires traversing the entire array and potentially swapping adjacent elements. This results in a quadratic time complexity of O(n^2).

Share This Question

Challenge a friend or share with your study group.