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

NameBestAverageWorst
Linear SearchO(1)O(N)O(N)
Binary SearchO(1)O(log N)O(log N)
Jump SearchO(1)O(√n)O(√n)