The table below shows all the sorting algorithms that will be analyzed and their expected best, average and worst case time complexities

NameBestAverageWorst
Bubble SortΟ(n)Ο(n²)Ο(n²)
Insertion SortΟ(n)Ο(n²)Ο(n²)
Selection SortΟ(n²)Ο(n²)Ο(n²)