Sorting Algorithms (W7D2) - Learning Objectives

Sorting Algorithms

  1. Write a function that performs bubble sort on an array of numbers.
  2. Write a function that performs selection sort on an array of numbers.
  3. Write a function that performs insertion sort on an array of numbers.
  4. Write a function that performs merge sort on an array of numbers.
  5. Write a function that performs quick sort on an array of numbers.