Bubble Sort is a simple comparison-based sorting algorithm where each pair of adjacent elements is compared and swapped if they are in the wrong order. This process is repeated until the list is sorted.
Paradigm
Comparison
Author
Iverson
Tier
Time Complexity
Best
Avg
Worst
Space
O(1)
Properties