What is Sorting?

Sorting is a technique used to arrange items or objects in a specific order which can be ascending or descending. It simply refers to the storage of data in a sorted sequence. It organizes the data in a logical order to facilitate searching.

Sorting Techniques

The method of sorting is determined based on the situation. It is determined by two factors.

1. The term "execution time" refers to the amount of time it takes for a program to run.
2. The term "space" refers to the amount of space occupied by the software.

Sorting methods differ in terms of efficiency and space needs.

Different Sorting Algorithms

There are a variety of sorting techniques available, each with its efficiency and space needs. The following are some of the widely used sorting techniques.

  • Bubble sort
  • Insertion sort
  • Selection sort
  • Merge sort
  • Heap sort

This algorithm needs inputs. After taking inputs, it works on the inputs and processes them. And at the end, it generates the result. Some of the examples are here:

Bubble Sort Algorithm

  • A bubble sort is a type of sorting that is used to sort elements by bubbling up the largest element in the array so that it occupies its correct position in the sorted array. It then bubbles up the second largest element and so on till the array is sorted.
  • It compares each element individually and arranges them according to their values.

Implementing Bubble Sort Algorithm

These are the steps that are used in bubble sort.

  1. Compare the current element to the next element of the array, starting with 0 index element.
  2. If the current element > next element then swap both elements.
  3. If condition 2 is not true then move on the next element. Step 1 should be repeated.

Consider an array having the values {14,33,27,35,10}

This example shows the working process of the bubble sort algorithm.

1433273510
first pass

First Pass:

  • Compare the first Arr[0] and second elements Arr[1]. Here Arr[0] (value is 14) is not greater than Arr[1] (value is 33) so there is no value swapped. and the array remains unchanged.
1433273510
first pass
  • Then move on to the second Arr[1] and third elements Arr[2]. Check Arr[1] and Arr[2] that means 33 > 27, which is correct. As a result, Arr[1] and Arr[2] are swapped.
1433273510
first pass


As a result, the array becomes:

1427333510
first pass
  • Arr[2] and Arr[3] are the third and fourth elements, respectively. If 33 is greater than 35, this is a misleading result. As a result, there is no swapping and the array is unchanged.
1427333510
first pass
  • Now to go on to the fourth Arr[3] and fifth elements Arr[4]. Check 35>10, which is true. As a result, Arr[3] and Arr[4] are swapped.
1427333510
first pass

As a result of the switch, the array now looks like this:

1427331035
first pass

So, at the end the greatest element is set to last position. Signaling the end of the first pass.

Second Pass:

In a second pass compare 14 and 27

1427331035
second pass

compare 27 and 33

1427331035
second pass

compare 33 and 10, 33 greater than 10 so exchange the position

1427331035
second pass
1427103335
second pass

compare 33 and 35

1427103335
second pass

Continue this for third pass and the result is

1410273335
Third pass

In fourth pass the result is

1014273335
Fourth pass

i-th Pass

If the array has i-th places then the largest element is stored at the i-th place after executing the i-th pass.
n-th Pass:

After completing all of the passes, it is noticed that the array has been sorted.

As a result, the sorted array will appear as follows:

1014273335
Fourth pass

Insertion Sort Algorithm

  • This method sorts the array by shifting each element one at a time.
  • The resulting sorted array is constructed by adding one element at a moment.
  • This sort is good for tiny data sets, but it is not suitable for long lists.

Implementing Insertion Sort Algorithm

  1. In the first step of the insertion sort algorithm, compare the element that is present in the question with its neighbor's elements.
  2. on each comparison, the place of the element is found out and it is place at that position, by shifting the remaining elements to right.
  3. The process is continued until all of the array's elements are correctly placed.

Let's take an example: 25, 17, 31, 13, 2

Here is the solution of the insertion sort.

Initial Iteration:

When comparing 25 to 17, see the difference. 17 25 is the result of the comparison. As a result, exchange 17 and 25.

This is how the array now looks:

251731132
first iteration
172531132
After the first iteration

Second Iteration:

Go to the second element, however, it has already been moved to its proper location, therefore go to the following element. Consider the third element (31) and how it compares to the previous ones.

There is no swapping since 31> 25.

Furthermore, when 31> 17, no switching occurs, and 31 remains in its original location.

After the second iteration, This is how the array appears:

17, 25, 31, 13, 2

172531132
Second iteration

Third Iteration:

Iterate the fourth element (13), and compare it to the previous items.

Swapping the two since 13<31. The array is now: 17, 25, 13, 31, 2.

However, there are still certain aspects that have not been compared to 13. Between the ages of 25 and 13, the comparison now takes place. As a result, since 13<25, the condition is true then swap the two elements. After this, the array becomes 17, 13, 25, 31, 2.

The last comparison is 17 and 13. It has been swapping the two since 13<17. The array now becomes 13, 17, 25, 31, 2.

131725312
Third iteration

Continue for Fourth Iteration-

213172531
Fourth iteration

The final array is: 2, 13, 17, 25, 31. So this is the resultant array.

Selection Sort Algorithm

The simplest sorting algorithm is the selection sort. In the selection sort algorithm, first of all, Pick the smallest element of the array. Swap the smallest element with the array's initial element. After this pick the second minimum element. And then move this to the array's second place. Continue to this process and at the end the array becomes sorted. Selection sort is named for the fact that it constantly selects the next-smallest element and swaps it into the correct position.

Implementing Selection Sort Algorithm

When sorting the array using selection sort, the unsorted array is distributed into two categories. The first category is a sorted array and the second category is an unsorted array. The left subarray is a sorted array and the right subarray is an unsorted array. At the starting condition, the left array is empty. And right (unsorted subarray) contains all elements of the array.

A user repeats the following steps until the unsorted subarray is empty:

1. From the unsorted subarray, select the smallest entry.

2. Replace it with the unsorted subarray's leftmost element.

3. The unsorted subarray's leftmost element has been incorporated into the sorted subarray and is no longer involved of the unsorted subarray.

Take an example array {5, 2, 6, 7, 2, 1, 0, 3}.Below is a graphic example of selection sort.

Consider the diagram below to depict various arrays.

The image involves selection sort step to sort the array.

Initial array A = [5, 2, 6, 7, 2, 1, 0, 3]

Unsorted subarray leftmost element = A[0]

Smallest element present in unsorted array = A[6]

At the first, A[0] and A[6] elements are swapped to each other and make a sorted array A[0] on the left side.

Now, the unsorted array leftmost element = A[1]

Smallest element present in unsorted array = A[5]

A[1] and A[5] elements are swapped to each other and make a sorted array A[1] on the left side.

Unsorted subarray leftmost element = A[2]

Smallest element present in unsorted array = A[4]

A[2] and A[4] elements are swapped to each other and make a sorted array A[2] on the left side.

Continue this

Sorted array

This is the final sorted array.

Merge Sort Algorithm

Divide and conquer technology is used in the merge sort algorithm. This technology saves a lot of time. The benefit of the divide and conquer technology is that the single element in the array is always sorted by itself. It divides the array according to its size. Each element becomes a separate array. Then it repeatedly merges these subarrays to create new sorted subarrays, until one complete sorted array is produced.

Implementing Merge Sort Algorithm

The steps for merging sort are as follows:

1. First of all assume a variable p and give it the first index of array. Then, in a new variable called r, store the last index of the array.

2. Now apply the formula (p + r)/2. This gives the middle point of the array. q should be assigned to the middle index. and then the array is divide into two parts. The first part contains p to q elements and the second part contains q+1 to r index elements.

3. After this, the created array is further divided into two subarrays following the above manner. And repeat this process.

Merge sort representation is here.

Working of merge sort

Heap Sort Algorithm

  • Heap sort follows tree data structure. A comparison-based sorting algorithm is used in this approach.
  • It resembles the selection sort algorithm quite closely. The main difference is that it searches for the largest element in an array and store it in the last place.

Implementing Heap Sort Algorithm

According to the figure, the unsorted array having length 6 is created first, followed by a max-heap.

heap sort example

Following the construction of max-heap, the array Arr will be:

Unsorted array

Follow the below steps for Heap Sorting:

Step 1: First find the largest element. Here is 8. and compare it with the last element of the array. Here is 5. Here 8>5 then swap it.
Step 2: After performing the swapping element 8 is to remove from removed the heap. Thus 8 is located in its correct position.


First two steps of heap sort

Step 3: In the third step Max-heap is developed. The value 7 is swapped by the the value 3.
Step 4: The value 7 has been set its correct position so it is remove from the heap.

Heap sort steps 3 and 4

Step 5: In the fifth step value 5 is swapped by the value 1.
Step 6: The value 5 has been set in its correct position so it is removed from the heap.

Heap sort steps 5 and 6

Continue this

Heap sort steps 7 and 8

Final steps of heap sort

The final array is developed after performing all the steps.

Sorted array

Comparision of Sorting Algorithm

  • If a sorting algorithm does not need additional space to change the input but does need a modest but non-constant amount of additional space to execute, it is called in-place. If just a small element from the input array would ever be stored from outside array, the sorting algorithm is said to sort in-place.
  • A stable sorting algorithm does not need to change elements orders with same values.
Sorting AlgorithmTime ComplexitySpace complexityIn-PlaceStable
Best caseAverage caseWorst caseWorst case
Bubble sortω(n)θ(n2)ο(n2)ο(1)YesYes
Selection sortω(n2)θ(n2)ο(n2)ο(1)YesNo
Insertion sortω(n)θ(n2)ο(n2)ο(1)YesYes
Merge sortω(nlogn)θ(nlogn)ο(nlogn)ο(n)

No

(Its needs a additional storage for merging the sorted subarray. )

Yes
Heap sortω(nlogn)θ(nlogn)ο(nlogn)ο(1)YesNo

Application of Sorting Algorithm

There are a lot of application of different sorting algorithm.

Sorting AlgorithmApplication
Bubble Sort
  • This algorithm gives the best result in a small size array. 
  • Bubble sort is most commonly used in learning environments. It provides help to students understand the basic concepts of sorting. It takes O(n) when a sorted list is present. This shows the best-case scenario. 

Insertion Sort

  • The insertion sort algorithm is stable for the sorted array. It has fast running cases.
  • The space complexity of this algorithm is O(1). Because it uses the constraints memory. 
  • Consider the case of insertion sorting in the real world. In a closet, a tailor arranges shirts and other clothing. He keeps all of his clothes in a size-based sorting system. As a result, quickly place new shirts in the appropriate location by sliding old shirts forward to make room for a new shirt.
Selection Sort
  • A selection sort can indeed be conceived of as any selection that occurs at a macro level. That is, the user can visually pick out the max or min element from all the elements of an unsorted list, place it in a sorted list, and so on. Picking apples from a tree, for example. Users can see all of the apples on the tree and choose the largest one to pluck and place in our basket. 
Merge Sort
  • This approach is used to access data in random order. The fundamental reason for this is that it utilizes forwarding iterators. Rather than being random access iterators, these are genuine sequential access iterators.
  • Random access is pricier than sequential access, hence it's ideal for external sorting.
  • External merge sort is used by databases to sort amounts of data that are too huge to fit totally in memory! 
Heap Sort
  • Sort a nearly sorted (or K sorted) array
  • K largest (or smallest) element in an array
  • Heap Sorting can be used in a sim card store with a long queue of clients. Customers who must pay bills should be handled first because their work will take less time. For many people in line, this strategy will save time and prevent unnecessary waiting.

Common Mistakes

There is no such thing as a "best" or "worst" sorting algorithm. Each algorithm has its own set of applications. Also, depending on the magnitude of the input data, the same algorithm may behave differently. The first step in selecting a sorting solution is to identify the problem space as well as requirements. When a single algorithm fails to meet the requirements, a hybrid method offers a superior result. After the user has determined the issue space narrow down the list of possible good-enough algorithms and do a practical analysis on the input data to arrive at a final solution.

Context and Applications

This topic is significant in the professional exams for graduate and postgraduate courses,
especially for

  • Bachelor of Science in Information Systems.
  • Bachelor of Science in Computer Science.
  • Master of Science in Data Analytics.
  • Insertion sort
  • Time complexity
  • Asymptotic Analysis
  • Quick sort
  • Comparison of sorting algorithm
  • Tree sort

Practice Questions

Q.1 Which of the following real-world scenarios uses insertion sort?

(A) Putting books on a library shelf

(B) Database and distribution scenarios

(C) Arranging a pack of playing card

(D) Real-time systems

Correct Option: (C) arranging a pack of playing card

Explanation: A pack of cards is arranged to mimic an insertion sort. A database is a merge sort scenario, a stack is arranging books, and real-time systems employ quick sort.

Q.2 Which algorithms are recursive?

(A) Merge Sort

(B) Quick Sort

(C) Binary Search

(D) All of the above

Correct Option: (D) All of the above

Explanation: Merge sort, quick sort and binary search all algorithms are recursive. In sorting algorithms, recursive approaches can be used, allowing for the sorting of n elements in Onlogn time (as opposed to the On2 efficiency of bubble sort).

Q.3 Which sorting uses divide-and-conquer technique?

(A) Selection sort

(B) Bubble sort

(C) Insertion sort

(D) Merge sort

Correct Option: (D) Merge sort

Explanation: The merge sort algorithm is a typical divide and conquers strategy. Sort the left and right parts of an array independently before merging them to sort it recursively.

Q.4 What does sorting mean?

(A) Listing elements in Ascending or Descending order

(B)  Keep the largest element first in the array

(C) Retrieve an item dataset

(D) All of the above

Correct Option: (A) Listing elements in Ascending or Descending order

Explanation: Any technique of systematically arranging elements is referred to as sorting. The arrangement is either ascending or descending.

Q.5 ---------------- is not a stable sorting technique.

(A) Merge Sort

(B)  Bubble Sort

(C) Selection Sort

(D) Insertion Sort

Correct Option: (C) Selection Sort

Explanation: The sorting time is unaffected by the order of the items. So that the selection sort is not a stable sorting algorithm.

Want more help with your computer science homework?

We've got you covered with step-by-step solutions to millions of textbook problems, subject matter experts on standby 24/7 when you're stumped, and more.
Check out a sample computer science Q&A solution here!

*Response times may vary by subject and question complexity. Median response time is 34 minutes for paid subscribers and may be longer for promotional offers.

Search. Solve. Succeed!

Study smarter access to millions of step-by step textbook solutions, our Q&A library, and AI powered Math Solver. Plus, you get 30 questions to ask an expert each month.

Tagged in

Sorting Homework Questions from Fellow Students

Browse our recently answered Sorting homework questions.

Search. Solve. Succeed!

Study smarter access to millions of step-by step textbook solutions, our Q&A library, and AI powered Math Solver. Plus, you get 30 questions to ask an expert each month.

Tagged in