Computer Science, asked by mahimamenda3382, 10 months ago

1 point



what is the best time complexity of bubble sort?

Answers

Answered by Anonymous
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