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
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
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).
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic