This repository contains a simple Python implementation of the bubble sorting algorithm. The idea behind bubble sort is to repeatedly swap adjacent elements in a list until they are sorted. The ...
This is to demonstrate the speed of two different ways for coding a bubble sort in python. The two codes generate a 10,000 integers exactly the same way, only they differ in how they loop through them ...