Properties of Bubble sort are:
Worst and Average Case Time Complexity: O(n^2). The worst case occurs when the array is sorted in opposite direction.
Best Case Time Complexity: O(n). The best-case occurs when the array is already sorted.
Auxiliary Space: O(1)
----------------------------------------------
Properties of Insertion sort are:
Worst and Average Case Time Complexity: O(n^2). The worst case occurs when the array is sorted in opposite direction.
Best Case Time Complexity: O(n). The best-case occurs when the array is already sorted.
Auxiliary Space: O(1)
----------------------------------------------
Properties of Selection sort are:
Worst and Average Case Time Complexity: O(n^2). The worst case occurs when the array is sorted in opposite direction.
Best Case Time Complexity: O(n^2). As in all cases, it will search minimum linearly for all n-1 iterations.
Auxiliary Space: O(1)