Sorting - Bubble sort Uses 'brute force' to sort a list Start at the beginning of the list.Compare the first value in the list with the next one up. If the first value is bigger swap the positions of the two values.Move to the second value in the list. ...Keep going until there are no more items to compare.Go back to the start of the list.