Python program to sort the elements of an array in ascending order

Created with Sketch.

 Python program to sort the elements of an array in ascending order

In this program, we need to sort the given array in ascending order such that elements will be arranged from smallest to largest. This can be achieved through two loops. The outer loop will select an element, and inner loop allows us to compare selected element with rest of the elements.

 

Elements will be sort in such a way that smallest element will appear on extreme left which in this case is 1. The largest element will appear on extreme right which in this case is 8.

ALGORITHM:

  • STEP 1: Declare and initialize an array.
  • STEP 2: Loop through the array and select an element.
  • STEP 3: The inner loop will be used to compare the selected element from the outer loop with the rest of the elements of the array.
  • STEP 4: If any element is less than the selected element then swap the values.
  • STEP 5: Continue this process till entire array is sorted in ascending order.

PROGRAM:

  1. #Initialize array   
  2. arr = [52871];
  3. temp = 0;
  4. #Displaying elements of original array  
  5. print(“Elements of original array: “);
  6. for i in range(0, len(arr)):
  7.     print(arr[i], end=” “);
  8. #Sort the array in ascending order  
  9. for i in range(0, len(arr)):
  10.     for j in range(i+1, len(arr)):
  11.         if(arr[i] > arr[j]):
  12.             temp = arr[i];
  13.             arr[i] = arr[j];
  14.             arr[j] = temp;
  15. print();
  16. #Displaying elements of the array after sorting  
  17. print(“Elements of array sorted in ascending order: “);
  18. for i in range(0, len(arr)):
  19.     print(arr[i], end=” “);

Output:

Elements of original array:
5 2 8 7 1
Elements of array sorted in ascending order:
1 2 5 7 8

Leave a Reply

Your email address will not be published. Required fields are marked *