Bubble Sorting Algorithm
Bubble Sort is an Array sorting algorithms. It is one of the simpler techniques, at the cost of being more processor-intensive.
In this algorithm, each element is compared to the one next to it and they are swapped if the one on the left is larger than the one on the right. The algorithm continues and repeates until the array is eventually sorted.
- Python 3.6.9 (or higher)
Clone the repo to your local machine using the terminal:
$ git clone git@github.com:andrewbaldwin44/Python_Bubble_Sort.git
- Navigate into the project directory
cd Python_Bubble_Sort
- Run the project
python bubble_sort.py
👤 Andrew Baldwin
- Github: @andrewbaldwin44