public class BubbleSort
extends java.lang.Object
| Constructor and Description |
|---|
BubbleSort() |
| Modifier and Type | Method and Description |
|---|---|
static int[] |
bubbleSort(int[] arr)
Time complexity: O(n^2) in the worst case, O(n) in the best case, when the array is sorted
Space complexity: O(n) total with O(1) auxiliary
|