Bubble Sort

Insertion Sort

Analyzing Sorts

  Number of Comparison Number of Exchanges
  Best Worst Best Worst
Selection Sort O(n^2) O(n^2) O(n) O(n)
Bubble Sort O(n) O(n^2) O(1) O(n^2)
Insertion Sort O(n) O(n^2) O(n) O(n^2)