Bubble Sort
Used to sort numbers
Method
- Check to see if the first two items in the list are in order. If not, swap them.
- If they are in order, leave them as they are.
- Once the end of the list is reached, go back to the beginning of the list and start again.
- The list is in order when a pass is made with no swaps made.