Monday November 13th 2023
Lecture Outline
- We will be writing our own sorting algorithms. Today's lecture focuses on Bubble sort
- Bubble sort runs in O(n^2) time (n = array size). This is because we have a for loop inside of a for loop
Lecture Recording
Lecture Slides
Code