English
Tamil Nadu Board of Secondary EducationHSC Science Class 12

Explain the Bubble sort algorithm with an example. - Computer Science

Advertisements
Advertisements

Question

Explain the Bubble sort algorithm with an example.

Answer in Brief

Solution

Bubble sort algorithm:

Bubble sort is a simple sorting algorithm. The algorithm starts at the beginning of the list of values stored in an array. It compares each pair of adjacent elements and swaps them if they are in the unsorted order. This comparison and passed to be continued until no swaps are needed, which indicates that the list of values stored in an array is sorted. The algorithm is a comparison sort, is named for the way smaller elements “bubble” to the top of the list.

Although the algorithm is simple, it is too slow and less efficient when compared to insertion sort and other sorting methods. Assume list is an array of n elements. The swap function swaps the values of the given array elements.

Pseudocode:

  1. Start with the first element i.e., index = 0, compare the current element with the next element of the array.
  2. If the current element is greater than the next element of the array, swap them.
  3. If the current element is less than the next or right side of the element, move to the next element. Go to Step 1 and repeat until the end of the index is reached.

Let’s consider an array with values {15, 11, 16, 12, 14, 13} Below, we have a pictorial representation of how bubble sort will sort the given array.

The above pictorial example is for iteration – 1. Similarly, the remaining iteration can be done. The final iteration will give the sorted array.
At the end of all the iterations we will get the sorted values in an array as given below:

 

shaalaa.com
  Is there an error in this question or solution?
Chapter 4: Algorithmic Strategies - Evaluation [Page 45]

APPEARS IN

Samacheer Kalvi Computer Science [English] Class 12 TN Board
Chapter 4 Algorithmic Strategies
Evaluation | Q 4. | Page 45
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×