Junior
What is the time complexity of the bubble sort algorithm?
sobes.tech AI
Answer from AI
The time complexity of the bubble sort algorithm in the worst and average cases is O(n²), where n is the number of elements in the list. In the best case (if the list is already sorted), the complexity is O(n).