0% found this document useful (0 votes)
76 views4 pages

Python Examples: The Following Code Shows How To Implement The Bubble Sort Algorithm in Python

The document explains how to implement a bubble sort algorithm in Python. It provides the code to define a bubbleSort function that accepts a list as a parameter and returns the sorted list. It then calls this function on a sample list and prints the sorted output. The code explanation section breaks down what each line of the bubble sort code is doing. It also provides advantages like it being simple to understand and disadvantages like it having poor time performance for large lists.

Uploaded by

rohan
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
0% found this document useful (0 votes)
76 views4 pages

Python Examples: The Following Code Shows How To Implement The Bubble Sort Algorithm in Python

The document explains how to implement a bubble sort algorithm in Python. It provides the code to define a bubbleSort function that accepts a list as a parameter and returns the sorted list. It then calls this function on a sample list and prints the sorted output. The code explanation section breaks down what each line of the bubble sort code is doing. It also provides advantages like it being simple to understand and disadvantages like it having poor time performance for large lists.

Uploaded by

rohan
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1/ 4

Python Examples

The following code shows how to implement the Bubble Sort algorithm in Python.

def bubbleSort( theSeq ):

n = len( theSeq )

for i in range( n - 1 ) :

flag = 0

for j in range(n - 1) :

if theSeq[j] > theSeq[j + 1] :

tmp = theSeq[j]

theSeq[j] = theSeq[j + 1]

theSeq[j + 1] = tmp

flag = 1

if flag == 0:

break

return theSeq
el = [21,6,9,33,3]

result = bubbleSort(el)

print (result)

Executing the above bubble sort program in Python produces the following results

[6, 9, 21, 3, 33]

Code Explanation
The explanation for the Python Bubble Sort program code is as follows
HERE,

1. Defines a function bubbleSort that accepts a parameter theSeq. The code does
not output anything.
2. Gets the length of the array and assigns the value to a variable n. The code does
not output anything
3. Starts a for loop that runs the bubble sort algorithm (n – 1) times. This is the
outer loop. The code does not output anything
4. Defines a flag variable that will be used to determine if a swap has occurred or
not. This is for optimization purposes. The code does not output anything
5. Starts the inner loop that compares all the values in the list from the first to the
last one. The code does not output anything.
6. Uses the if statement to check if the value on the left-hand side is greater than
the one on the immediate right side. The code does not output anything.
7. Assigns the value of theSeq[j] to a temporal variable tmp if the condition
evaluates to true. The code does not output anything
8. The value of theSeq[j + 1] is assigned to the position of theSeq[j]. The code does
not output anything
9. The value of the variable tmp is assigned to position theSeq[j + 1]. The code
does not output anything
10. The flag variable is assigned the value 1 to indicate that a swap has taken place.
The code does not output anything
11. Uses an if statement to check if the value of the variable flag is 0. The code does
not output anything
12. If the value is 0, then we call the break statement that steps out of the inner loop.
13. Returns the value of theSeq after it has been sorted. The code outputs the sorted
list.
14. Defines a variable el that contains a list of random numbers. The code does not
output anything.
15. Assigns the value of the function bubbleSort to a variable result.
16. Prints the value of the variable result.

Bubble sort advantages


The following are some of the advantages of the bubble sort algorithm

 It is easy to understand
 It performs very well when the list is already or almost sorted
 It does not require extensive memory.
 It is easy to write the code for the algorithm
 The space requirements are minimal compared to other sorting algorithms.

Bubble sort Disadvantages


The following are some of the disadvantages of the bubble sort algorithm
 It does not perform well when sorting large lists. It takes too much time and
resources.
 It's mostly used for academic purposes and not the real-world application.
 The number of steps required to sort the list is of the order n 2

You might also like