1 point
what is the best time complexity of bubble sort?
Answers
Answered by
0
Bubble sort has a worst-case and average complexity of О(n2), where n is the number of items being sorted. Most practical sorting algorithms have substantially better worst-case or average complexity, often O(n log n).
Similar questions